1
0
mirror of https://github.com/php/php-src.git synced 2026-04-10 09:33:06 +02:00

Thread safety fixes

This commit is contained in:
Zeev Suraski
1999-04-24 16:16:11 +00:00
parent 3b516557f2
commit e06a1ed265
2 changed files with 4 additions and 4 deletions

View File

@@ -41,8 +41,8 @@ FILE *(*zend_fopen)(const char *filename);
void (*zend_block_interruptions)();
void (*zend_unblock_interruptions)();
#ifdef ZTS
int compiler_globals_id;
int executor_globals_id;
ZEND_API int compiler_globals_id;
ZEND_API int executor_globals_id;
int alloc_globals_id;
HashTable *global_function_table;
HashTable *global_class_table;

View File

@@ -35,8 +35,8 @@ class ZendFlexLexer;
#endif
BEGIN_EXTERN_C()
extern int compiler_globals_id;
extern int executor_globals_id;
ZEND_API extern int compiler_globals_id;
ZEND_API extern int executor_globals_id;
extern int alloc_globals_id;
END_EXTERN_C()