From d08cb90462d6a1339d216e6122be55ee55c3f9d8 Mon Sep 17 00:00:00 2001 From: Bob Weinand Date: Wed, 13 Jul 2016 00:37:25 +0200 Subject: [PATCH] Cleanup zend_/signal usage in phpdbg.c --- sapi/phpdbg/phpdbg.c | 27 +++++++-------------------- sapi/phpdbg/phpdbg.h | 8 +++----- 2 files changed, 10 insertions(+), 25 deletions(-) diff --git a/sapi/phpdbg/phpdbg.c b/sapi/phpdbg/phpdbg.c index bf11359bb0848..d851e0b0823b9 100644 --- a/sapi/phpdbg/phpdbg.c +++ b/sapi/phpdbg/phpdbg.c @@ -18,10 +18,6 @@ +----------------------------------------------------------------------+ */ -#if !defined(ZEND_SIGNALS) || defined(_WIN32) -# include -#endif - #include "phpdbg.h" #include "phpdbg_prompt.h" #include "phpdbg_bp.h" @@ -1644,6 +1640,10 @@ int main(int argc, char **argv) /* {{{ */ void (*_free)(void*); void* (*_realloc)(void*, size_t); + zend_try { + zend_signal_activate(); + } zend_end_try(); + /* setup remote server if necessary */ if (cleaning <= 0 && listen > 0) { server = phpdbg_open_socket(address, listen); @@ -1652,7 +1652,7 @@ int main(int argc, char **argv) /* {{{ */ } #ifndef _WIN32 - sigaction(SIGIO, &sigio_struct, NULL); + zend_sigaction(SIGIO, &sigio_struct, NULL); #endif /* set remote flag to stop service shutting down upon quit */ @@ -1660,7 +1660,7 @@ int main(int argc, char **argv) /* {{{ */ #ifndef _WIN32 } else { - signal(SIGHUP, phpdbg_sighup_handler); + zend_signal(SIGHUP, phpdbg_sighup_handler); #endif } @@ -1682,11 +1682,6 @@ int main(int argc, char **argv) /* {{{ */ zend_mm_set_custom_handlers(mm_heap, _malloc, _free, _realloc); } -#if defined(ZEND_SIGNALS) && !defined(_WIN32) - zend_try { - zend_signal_activate(); - } zend_end_try(); -#endif phpdbg_init_list(); @@ -1726,12 +1721,9 @@ int main(int argc, char **argv) /* {{{ */ return 1; } -#if defined(ZEND_SIGNALS) && !defined(_WIN32) +#ifndef _WIN32 zend_try { zend_sigaction(SIGSEGV, &signal_struct, &PHPDBG_G(old_sigsegv_signal)); } zend_end_try(); zend_try { zend_sigaction(SIGBUS, &signal_struct, &PHPDBG_G(old_sigsegv_signal)); } zend_end_try(); -#elif !defined(_WIN32) - sigaction(SIGSEGV, &signal_struct, &PHPDBG_G(old_sigsegv_signal)); - sigaction(SIGBUS, &signal_struct, &PHPDBG_G(old_sigsegv_signal)); #endif /* do not install sigint handlers for remote consoles */ @@ -1739,18 +1731,13 @@ int main(int argc, char **argv) /* {{{ */ #ifndef _WIN32 if (listen < 0) { #endif -#if defined(ZEND_SIGNALS) && !defined(_WIN32) zend_try { zend_signal(SIGINT, phpdbg_sigint_handler); } zend_end_try(); -#else - signal(SIGINT, phpdbg_sigint_handler); -#endif #ifndef _WIN32 } /* setup io here */ if (remote) { PHPDBG_G(flags) |= PHPDBG_IS_REMOTE; - signal(SIGPIPE, SIG_IGN); } PHPDBG_G(io)[PHPDBG_STDIN].ptr = stdin; diff --git a/sapi/phpdbg/phpdbg.h b/sapi/phpdbg/phpdbg.h index 227aaebe41960..26bfc490df7fc 100644 --- a/sapi/phpdbg/phpdbg.h +++ b/sapi/phpdbg/phpdbg.h @@ -45,11 +45,9 @@ #include "zend_globals.h" #include "zend_ini_scanner.h" #include "zend_stream.h" -#ifndef _WIN32 -# include "zend_signal.h" -# if !defined(ZEND_SIGNALS) && defined(HAVE_SIGNAL_H) -# include -# endif +#include "zend_signal.h" +#if !defined(_WIN32) && !defined(ZEND_SIGNALS) && defined(HAVE_SIGNAL_H) +# include #endif #include "SAPI.h" #include