diff options
author | Zeev Suraski <zeev@php.net> | 2000-11-18 02:44:04 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-11-18 02:44:04 +0000 |
commit | 030b707296e98813cecb75dba46eca0fa56ef8c8 (patch) | |
tree | 6ef3e160ee686043f9d8358b95535fd7e55c9c3e /sapi/apache/mod_php4.c | |
parent | 9a0b61a6195433a7115b040b47df03ec46f5117d (diff) | |
download | php-git-030b707296e98813cecb75dba46eca0fa56ef8c8.tar.gz |
Update SAPI modules to interface with the new TSRM.
Enable thread-safety memory debugging in ISAPI when in debug mode
Diffstat (limited to 'sapi/apache/mod_php4.c')
-rw-r--r-- | sapi/apache/mod_php4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/apache/mod_php4.c b/sapi/apache/mod_php4.c index c9c30786ed..085a15fe78 100644 --- a/sapi/apache/mod_php4.c +++ b/sapi/apache/mod_php4.c @@ -589,7 +589,7 @@ CONST_PREFIX char *php_apache_value_handler_ex(cmd_parms *cmd, HashTable *conf, if (!apache_php_initialized) { apache_php_initialized = 1; #ifdef ZTS - tsrm_startup(1, 1, 0); + tsrm_startup(1, 1, 0, NULL); #endif sapi_startup(&sapi_module_conf); php_apache_startup(&sapi_module_conf); @@ -708,7 +708,7 @@ void php_init_handler(server_rec *s, pool *p) if (!apache_php_initialized) { apache_php_initialized = 1; #ifdef ZTS - tsrm_startup(1, 1, 0); + tsrm_startup(1, 1, 0, NULL); #endif sapi_startup(&sapi_module_conf); php_apache_startup(&sapi_module_conf); |