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.h | |
parent | 672d80f5dcb12a06d200969b8159badd45a57c0d (diff) | |
download | php-git-803d32224055373cfabd7695e456f4e1382d44ab.tar.gz |
Use fastcall calling convention
Diffstat (limited to 'Zend/zend_execute.h')
-rw-r--r-- | Zend/zend_execute.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_execute.h b/Zend/zend_execute.h index 76f7d09f43..59b0742d82 100644 --- a/Zend/zend_execute.h +++ b/Zend/zend_execute.h @@ -344,7 +344,7 @@ ZEND_API zend_bool zend_is_executing(void); ZEND_API void zend_set_timeout(zend_long seconds, int reset_signals); ZEND_API void zend_unset_timeout(void); -ZEND_API ZEND_NORETURN void zend_timeout(int dummy); +ZEND_API ZEND_NORETURN void ZEND_FASTCALL zend_timeout(int dummy); ZEND_API zend_class_entry *zend_fetch_class(zend_string *class_name, int fetch_type); ZEND_API zend_class_entry *zend_fetch_class_by_name(zend_string *class_name, zend_string *lcname, int fetch_type); |