chiark / gitweb /
util: make sure reset_all_signal_handlers() continues with all other signal handlers...
authorLennart Poettering <lennart@poettering.net>
Tue, 26 Aug 2014 19:03:20 +0000 (21:03 +0200)
committerLennart Poettering <lennart@poettering.net>
Tue, 26 Aug 2014 19:03:23 +0000 (21:03 +0200)
After all, we usually don't check for failures here, and it is better to
do as much as we can...

src/shared/util.c

index fc6f668726c60ee7d00db1809b7e3f8a3f4de744..4af2d3cebad19a261a3134a162b20f6520f419ae 100644 (file)
@@ -937,7 +937,7 @@ int readlink_and_canonicalize(const char *p, char **r) {
 }
 
 int reset_all_signal_handlers(void) {
 }
 
 int reset_all_signal_handlers(void) {
-        int sig;
+        int sig, r = 0;
 
         for (sig = 1; sig < _NSIG; sig++) {
                 struct sigaction sa = {
 
         for (sig = 1; sig < _NSIG; sig++) {
                 struct sigaction sa = {
@@ -945,17 +945,18 @@ int reset_all_signal_handlers(void) {
                         .sa_flags = SA_RESTART,
                 };
 
                         .sa_flags = SA_RESTART,
                 };
 
+                /* These two cannot be caught... */
                 if (sig == SIGKILL || sig == SIGSTOP)
                         continue;
 
                 /* On Linux the first two RT signals are reserved by
                  * glibc, and sigaction() will return EINVAL for them. */
                 if ((sigaction(sig, &sa, NULL) < 0))
                 if (sig == SIGKILL || sig == SIGSTOP)
                         continue;
 
                 /* On Linux the first two RT signals are reserved by
                  * glibc, and sigaction() will return EINVAL for them. */
                 if ((sigaction(sig, &sa, NULL) < 0))
-                        if (errno != EINVAL)
-                                return -errno;
+                        if (errno != EINVAL && r == 0)
+                                r = -errno;
         }
 
         }
 
-        return 0;
+        return r;
 }
 
 char *strstrip(char *s) {
 }
 
 char *strstrip(char *s) {