From: Pierre Joye Date: Thu, 8 Sep 2011 09:17:21 +0000 (+0000) Subject: - fix build when no zend signal support X-Git-Tag: php-5.5.0alpha1~1222 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d566f0c88e1d3981c421e3fbad23ebe2b8420277;p=php - fix build when no zend signal support --- diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index 2572f85b90..9d4cc799a2 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -1328,6 +1328,7 @@ ZEND_API void zend_timeout(int dummy) /* {{{ */ TSRMLS_FETCH(); if (zend_on_timeout) { +#ifdef ZEND_SIGNALS /* We got here because we got a timeout signal, so we are in a signal handler at this point. However, we want to be able to timeout any user-supplied @@ -1335,6 +1336,7 @@ ZEND_API void zend_timeout(int dummy) /* {{{ */ calling these */ SIGG(running) = 0; +#endif zend_on_timeout(EG(timeout_seconds) TSRMLS_CC); }