1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 18:53:33 +02:00

Use better data structures (incomplete)

This commit is contained in:
Dmitry Stogov
2014-02-10 12:18:01 +04:00
parent f4cfaf36e2
commit 00244baba8
2 changed files with 207 additions and 201 deletions
File diff suppressed because it is too large Load Diff
+3 -3
View File
@@ -164,7 +164,7 @@ typedef signed long php_int32;
typedef struct _php_basic_globals {
HashTable *user_shutdown_function_names;
HashTable putenv_ht;
zval *strtok_zval;
zval strtok_zval;
char *strtok_string;
char *locale_string;
char *strtok_last;
@@ -177,7 +177,7 @@ typedef struct _php_basic_globals {
zend_fcall_info_cache user_compare_fci_cache;
zend_llist *user_tick_functions;
zval *active_ini_file_section;
zval active_ini_file_section;
/* pageinfo.c */
long page_uid;
@@ -253,7 +253,7 @@ PHPAPI double php_get_nan(void);
PHPAPI double php_get_inf(void);
typedef struct _php_shutdown_function_entry {
zval **arguments;
zval *arguments;
int arg_count;
} php_shutdown_function_entry;