From 90b29aa076f1a5ef1b36b20cef925aac932d66b5 Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Tue, 5 Aug 2003 10:29:03 +0000 Subject: Replace fast_call_user_function() with zend_call_function() --- ext/standard/basic_functions.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/standard/basic_functions.h') diff --git a/ext/standard/basic_functions.h b/ext/standard/basic_functions.h index 19b07c086d..4d60602366 100644 --- a/ext/standard/basic_functions.h +++ b/ext/standard/basic_functions.h @@ -137,7 +137,7 @@ typedef signed int php_int32; #define MT_N (624) -typedef struct { +typedef struct _php_basic_globals { HashTable *user_shutdown_function_names; HashTable putenv_ht; zval *strtok_zval; @@ -148,9 +148,9 @@ typedef struct { ulong strtok_len; char str_ebuf[40]; zval **array_walk_func_name; - zend_function *array_walk_func_ptr; + zend_fcall_info_cache array_walk_fci_cache; zval **user_compare_func_name; - zend_function *user_compare_func_ptr; + zend_fcall_info_cache user_compare_fci_cache; zend_llist *user_tick_functions; zval *active_ini_file_section; -- cgit v1.2.1