diff options
Diffstat (limited to 'testing/pacemaker/fix-SIGCHLD.patch')
-rw-r--r-- | testing/pacemaker/fix-SIGCHLD.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testing/pacemaker/fix-SIGCHLD.patch b/testing/pacemaker/fix-SIGCHLD.patch new file mode 100644 index 0000000000..b221600284 --- /dev/null +++ b/testing/pacemaker/fix-SIGCHLD.patch @@ -0,0 +1,11 @@ +--- ./tools/crm_mon.c.orig ++++ ./tools/crm_mon.c +@@ -518,7 +518,7 @@ + + #if !defined (ON_DARWIN) && !defined (ON_BSD) + /* prevent zombies */ +- signal(SIGCLD, SIG_IGN); ++ signal(SIGCHLD, SIG_IGN); + #endif + + if (strcmp(crm_system_name, "crm_mon.cgi") == 0) { |