diff options
author | Stanislav Malyshev <stas@php.net> | 2012-02-16 01:51:45 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2012-02-16 01:51:45 +0000 |
commit | dab17da38a93ce023a4c856ec7c85ef3748b8a4d (patch) | |
tree | 0107aa3fbfb01a512035b92c489c1f03bb146379 /main | |
parent | 7a58d9f6794d6786891f83bfb32ecfca7161d6dd (diff) | |
download | php-git-dab17da38a93ce023a4c856ec7c85ef3748b8a4d.tar.gz |
make ZEND_SIGNALS configurable, off by default
also make ZEND_SIGNALS enabled and disabled binary-compatible
Diffstat (limited to 'main')
-rw-r--r-- | main/main.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/main/main.c b/main/main.c index 1f1101ef61..ac78976e89 100644 --- a/main/main.c +++ b/main/main.c @@ -1999,10 +1999,8 @@ int php_module_startup(sapi_module_struct *sf, zend_module_entry *additional_mod zuf.write_function = php_output_wrapper; zuf.fopen_function = php_fopen_wrapper_for_zend; zuf.message_handler = php_message_handler_for_zend; -#ifndef ZEND_SIGNALS zuf.block_interruptions = sapi_module.block_interruptions; zuf.unblock_interruptions = sapi_module.unblock_interruptions; -#endif zuf.get_configuration_directive = php_get_configuration_directive_for_zend; zuf.ticks_function = php_run_ticks; zuf.on_timeout = php_on_timeout; |