diff options
author | Zeev Suraski <zeev@php.net> | 1999-04-21 03:49:09 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-04-21 03:49:09 +0000 |
commit | 7a87fcbbdac80f77f8b6ceb16436d398019c6091 (patch) | |
tree | d82be34324646bfc09e3e4ec3e790b45b31986a1 /Zend/zend_API.h | |
parent | 37fe04b887f84e1a6eff7e356f614d7293aaee58 (diff) | |
download | php-git-7a87fcbbdac80f77f8b6ceb16436d398019c6091.tar.gz |
Thread safety patch. We're still not quite there but it compiles again, and
more logic has been implemented.
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r-- | Zend/zend_API.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h index ffed84be10..4e264ae967 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -38,9 +38,9 @@ ZEND_API int getParametersArrayEx(int param_count, zval ***argument_array); ZEND_API int getThis(zval **this); ZEND_API int ParameterPassedByReference(int ht, uint n); -int register_functions(zend_function_entry *functions); -void unregister_functions(zend_function_entry *functions, int count); -ZEND_API int register_module(zend_module_entry *module_entry); +int zend_register_functions(zend_function_entry *functions); +void zend_unregister_functions(zend_function_entry *functions, int count); +ZEND_API int zend_register_module(zend_module_entry *module_entry); zend_class_entry *register_internal_class(zend_class_entry *class_entry); ZEND_API void wrong_param_count(void); |