From: Antony Dovgal Date: Tue, 22 Nov 2011 03:39:12 +0000 (+0000) Subject: export zend_on_timeout handler from ZE X-Git-Tag: php-5.4.0RC2~21 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e14819439cb4143ae626b60ef04bed3ef4a5ff2c;p=php export zend_on_timeout handler from ZE --- diff --git a/Zend/zend.h b/Zend/zend.h index 5c092dbc6d..06b0ad4d6e 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -683,7 +683,7 @@ extern ZEND_API void (*zend_unblock_interruptions)(void); #endif extern ZEND_API void (*zend_ticks_function)(int ticks); extern ZEND_API void (*zend_error_cb)(int type, const char *error_filename, const uint error_lineno, const char *format, va_list args) ZEND_ATTRIBUTE_PTR_FORMAT(printf, 4, 0); -extern void (*zend_on_timeout)(int seconds TSRMLS_DC); +extern ZEND_API void (*zend_on_timeout)(int seconds TSRMLS_DC); extern ZEND_API int (*zend_stream_open_function)(const char *filename, zend_file_handle *handle TSRMLS_DC); extern int (*zend_vspprintf)(char **pbuf, size_t max_len, const char *format, va_list ap); extern ZEND_API char *(*zend_getenv)(char *name, size_t name_len TSRMLS_DC);