Blame SOURCES/httpd-2.4.6-mpm-segfault.patch
|
|
41a6c3 |
--- a/server/mpm/event/event.c
|
|
|
41a6c3 |
+++ a/server/mpm/event/event.c
|
|
|
41a6c3 |
@@ -2735,6 +2735,7 @@ static int event_run(apr_pool_t * _pconf, apr_pool_t * plog, server_rec * s)
|
|
|
41a6c3 |
|
|
|
41a6c3 |
/* we've been told to restart */
|
|
|
41a6c3 |
apr_signal(SIGHUP, SIG_IGN);
|
|
|
41a6c3 |
+ apr_signal(AP_SIG_GRACEFUL, SIG_IGN);
|
|
|
41a6c3 |
|
|
|
41a6c3 |
if (one_process) {
|
|
|
41a6c3 |
/* not worth thinking about */
|
|
|
41a6c3 |
|
|
|
41a6c3 |
--- a/server/mpm/worker/worker.c
|
|
|
41a6c3 |
+++ b/server/mpm/worker/worker.c
|
|
|
41a6c3 |
@@ -1902,6 +1902,7 @@ static int worker_run(apr_pool_t *_pconf, apr_pool_t *plog, server_rec *s)
|
|
|
41a6c3 |
|
|
|
41a6c3 |
/* we've been told to restart */
|
|
|
41a6c3 |
apr_signal(SIGHUP, SIG_IGN);
|
|
|
41a6c3 |
+ apr_signal(AP_SIG_GRACEFUL, SIG_IGN);
|
|
|
41a6c3 |
|
|
|
41a6c3 |
if (one_process) {
|
|
|
41a6c3 |
/* not worth thinking about */
|