From 189d5bac5c45a6a735489541e285dec8bfc1d38d Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 23 Sep 2015 01:32:44 +0200 Subject: 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. --- src/basic/util.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/basic/util.c') 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 */ +} -- cgit v1.2.3-54-g00ecf