diff options
author | Dmitry Stogov <dmitry@zend.com> | 2019-04-02 22:10:57 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2019-04-02 22:10:57 +0300 |
commit | 803d32224055373cfabd7695e456f4e1382d44ab (patch) | |
tree | a347bcbb5e07f1b45c651566b412d3c055232ff3 /Zend/zend_execute_API.c | |
parent | 672d80f5dcb12a06d200969b8159badd45a57c0d (diff) | |
download | php-git-803d32224055373cfabd7695e456f4e1382d44ab.tar.gz |
Use fastcall calling convention
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r-- | Zend/zend_execute_API.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index aaf7f72cb6..07113bf69e 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -1063,7 +1063,7 @@ ZEND_API int zend_eval_string_ex(char *str, zval *retval_ptr, char *string_name, static void zend_set_timeout_ex(zend_long seconds, int reset_signals); -ZEND_API ZEND_NORETURN void zend_timeout(int dummy) /* {{{ */ +ZEND_API ZEND_NORETURN void ZEND_FASTCALL zend_timeout(int dummy) /* {{{ */ { #if defined(PHP_WIN32) # ifndef ZTS |