diff options
| author | Zeev Suraski <zeev@php.net> | 2000-10-29 11:38:26 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 2000-10-29 11:38:26 +0000 |
| commit | 1fd09132c2539400fa198ba3172aed9ab0a9b951 (patch) | |
| tree | adbb8641e79e9db6e354ac4869daf51061fa450f /main/main.c | |
| parent | 825457ae64db20d0a35a272465e9a1dc1cf64e61 (diff) | |
| download | php-git-1fd09132c2539400fa198ba3172aed9ab0a9b951.tar.gz | |
Initial steps to move the INI mechanism to the Zend engine
Diffstat (limited to 'main/main.c')
| -rw-r--r-- | main/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/main.c b/main/main.c index e706b7ca2a..5409b6f4a0 100644 --- a/main/main.c +++ b/main/main.c @@ -672,7 +672,7 @@ void php_request_shutdown(void *dummy) } if (setjmp(EG(bailout))==0) { - php_ini_rshutdown(); + zend_ini_rshutdown(); } zend_deactivate(CLS_C ELS_CC); @@ -862,7 +862,7 @@ int php_module_startup(sapi_module_struct *sf) le_index_ptr = zend_register_list_destructors_ex(NULL, NULL, "index pointer", 0); FREE_MUTEX(gLock); - php_ini_mstartup(); + zend_ini_mstartup(); if (php_config_ini_startup() == FAILURE) { return FAILURE; @@ -937,7 +937,7 @@ void php_module_shutdown() zend_shutdown(); php_shutdown_fopen_wrappers(); UNREGISTER_INI_ENTRIES(); - php_ini_mshutdown(); + zend_ini_mshutdown(); shutdown_memory_manager(0, 1); module_initialized = 0; } |
