diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-09-23 01:32:44 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-09-29 21:08:37 +0200 |
commit | 189d5bac5c45a6a735489541e285dec8bfc1d38d (patch) | |
tree | 955cf1bb252323c0f7720d88971de65ddbc0a290 /src/basic/util.c | |
parent | e6e242ad2d5f72573ceb4442242789aa23962cd2 (diff) |
util: unify implementation of NOP signal handler
This is highly complex code after all, we really should make sure to
only keep one implementation of this extremely difficult function
around.
Diffstat (limited to 'src/basic/util.c')
-rw-r--r-- | src/basic/util.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/basic/util.c b/src/basic/util.c index c788a1d58b..f7e4aefebb 100644 --- a/src/basic/util.c +++ b/src/basic/util.c @@ -6916,3 +6916,7 @@ int receive_one_fd(int transport_fd, int flags) { return *(int*) CMSG_DATA(found); } + +void nop_signal_handler(int sig) { + /* nothing here */ +} |