diff options
| author | Zeev Suraski <zeev@php.net> | 2001-08-05 01:37:10 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 2001-08-05 01:37:10 +0000 |
| commit | fcc035108f7b8d2e169c5a592227b3df84d0573e (patch) | |
| tree | d0a42c8d70caa6234b98d5a1d6f33e518c3837d4 /Zend/zend_API.h | |
| parent | 1f3faae3523071c45fbe074c51804a43c05aa55b (diff) | |
| download | php-git-fcc035108f7b8d2e169c5a592227b3df84d0573e.tar.gz | |
TSRMLS_FETCH work
Diffstat (limited to 'Zend/zend_API.h')
| -rw-r--r-- | Zend/zend_API.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h index e8264590d3..5567d5d7a1 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -151,11 +151,11 @@ ZEND_API zend_bool zend_is_callable(zval *callable, zend_bool syntax_only, char ZEND_API int zend_startup_module(zend_module_entry *module); #define array_init(arg) _array_init((arg) ZEND_FILE_LINE_CC) -#define object_init(arg) _object_init((arg) ZEND_FILE_LINE_CC) -#define object_init_ex(arg, ce) _object_init_ex((arg), (ce) ZEND_FILE_LINE_CC) +#define object_init(arg) _object_init((arg) ZEND_FILE_LINE_CC TSRMLS_CC) +#define object_init_ex(arg, ce) _object_init_ex((arg), (ce) ZEND_FILE_LINE_CC TSRMLS_CC) ZEND_API int _array_init(zval *arg ZEND_FILE_LINE_DC); -ZEND_API int _object_init(zval *arg ZEND_FILE_LINE_DC); -ZEND_API int _object_init_ex(zval *arg, zend_class_entry *ce ZEND_FILE_LINE_DC); +ZEND_API int _object_init(zval *arg ZEND_FILE_LINE_DC TSRMLS_DC); +ZEND_API int _object_init_ex(zval *arg, zend_class_entry *ce ZEND_FILE_LINE_DC TSRMLS_DC); /* no longer supported */ ZEND_API int add_assoc_function(zval *arg, char *key,void (*function_ptr)(INTERNAL_FUNCTION_PARAMETERS)); |
