aboutsummaryrefslogtreecommitdiffstats
path: root/main/busybox/0001-acpid-do-not-install-handlers-for-fatal-signals.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/busybox/0001-acpid-do-not-install-handlers-for-fatal-signals.patch')
-rw-r--r--main/busybox/0001-acpid-do-not-install-handlers-for-fatal-signals.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/main/busybox/0001-acpid-do-not-install-handlers-for-fatal-signals.patch b/main/busybox/0001-acpid-do-not-install-handlers-for-fatal-signals.patch
deleted file mode 100644
index b62ab4aade..0000000000
--- a/main/busybox/0001-acpid-do-not-install-handlers-for-fatal-signals.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From bbf1e3c144c1ee93409a0e0546cb56b34eccfcfd Mon Sep 17 00:00:00 2001
-From: Denys Vlasenko <vda.linux@googlemail.com>
-Date: Sun, 5 Feb 2012 15:08:08 +0100
-Subject: [PATCH 1/4] acpid: do not install handlers for fatal signals
-
-For acpid, it's ok to die at once.
-
-Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
----
- util-linux/acpid.c | 8 ++++++--
- 1 files changed, 6 insertions(+), 2 deletions(-)
-
-diff --git a/util-linux/acpid.c b/util-linux/acpid.c
-index 361a2b2..1b22f3a 100644
---- a/util-linux/acpid.c
-+++ b/util-linux/acpid.c
-@@ -268,8 +268,12 @@ int acpid_main(int argc UNUSED_PARAM, char **argv)
-
- xchdir(opt_dir);
-
-+ /* We spawn children but don't wait for them. Prevent zombies: */
- bb_signals((1 << SIGCHLD), SIG_IGN);
-- bb_signals(BB_FATAL_SIGS, record_signo);
-+ // If you enable this, (1) explain why, (2)
-+ // make sure while(poll) loop below is still interruptible
-+ // by SIGTERM et al:
-+ //bb_signals(BB_FATAL_SIGS, record_signo);
-
- pfd = NULL;
- nfd = 0;
-@@ -337,7 +341,7 @@ int acpid_main(int argc UNUSED_PARAM, char **argv)
- }
- if (!event)
- continue;
-- // spawn event handler
-+ /* spawn event handler */
- process_event(event);
- }
- }
---
-1.7.9.1
-