diff options
author | Anatol Belski <ab@php.net> | 2014-12-13 23:06:14 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-12-13 23:06:14 +0100 |
commit | bdeb220f48825642f84cdbf3ff23a30613c92e86 (patch) | |
tree | 1a6cf34d20420e4815b4becb21311a4457d84103 /Zend/zend_modules.h | |
parent | bb66f385d09e7e55390e9f57fcbca08f6b43ff91 (diff) | |
download | php-git-bdeb220f48825642f84cdbf3ff23a30613c92e86.tar.gz |
first shot remove TSRMLS_* things
Diffstat (limited to 'Zend/zend_modules.h')
-rw-r--r-- | Zend/zend_modules.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/zend_modules.h b/Zend/zend_modules.h index 9b1717d5df..b757af642e 100644 --- a/Zend/zend_modules.h +++ b/Zend/zend_modules.h @@ -91,8 +91,8 @@ struct _zend_module_entry { #else void* globals_ptr; #endif - void (*globals_ctor)(void *global TSRMLS_DC); - void (*globals_dtor)(void *global TSRMLS_DC); + void (*globals_ctor)(void *global); + void (*globals_dtor)(void *global); int (*post_deactivate_func)(void); int module_started; unsigned char type; @@ -125,8 +125,8 @@ struct _zend_module_dep { extern ZEND_API HashTable module_registry; void module_destructor(zend_module_entry *module); -int module_registry_request_startup(zend_module_entry *module TSRMLS_DC); -int module_registry_unload_temp(const zend_module_entry *module TSRMLS_DC); +int module_registry_request_startup(zend_module_entry *module); +int module_registry_unload_temp(const zend_module_entry *module); #endif |