diff options
| author | Andi Gutmans <andi@php.net> | 1999-09-05 19:03:35 +0000 |
|---|---|---|
| committer | Andi Gutmans <andi@php.net> | 1999-09-05 19:03:35 +0000 |
| commit | 99947a251ed175582243f66bcd014478ae975de6 (patch) | |
| tree | 1b63d2225972de62a92cd7c381334fdb421b3f9c /Zend/zend.c | |
| parent | 5bcc06768797e658f8eaa07c5f218b754b3630ce (diff) | |
| download | php-git-99947a251ed175582243f66bcd014478ae975de6.tar.gz | |
- Shift around header files.
Diffstat (limited to 'Zend/zend.c')
| -rw-r--r-- | Zend/zend.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend.c b/Zend/zend.c index 39d945e963..2e1fb09bd9 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -278,7 +278,7 @@ static void executor_globals_dtor(zend_executor_globals *executor_globals) static void alloc_globals_ctor(zend_alloc_globals *alloc_globals) { - start_memory_manager(); + start_memory_manager(ALS_C); } #endif @@ -291,10 +291,10 @@ int zend_startup(zend_utility_functions *utility_functions, char **extensions) zend_executor_globals *executor_globals; alloc_globals_id = ts_allocate_id(sizeof(zend_alloc_globals), alloc_globals_ctor, NULL); +#else + start_memory_manager(ALS_C); #endif - start_memory_manager(); - /* Set up utility functions and values */ zend_error = utility_functions->error_function; zend_printf = utility_functions->printf_function; |
