summaryrefslogtreecommitdiff
path: root/Zend/zend_globals.h
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2001-07-15 14:08:58 +0000
committerZeev Suraski <zeev@php.net>2001-07-15 14:08:58 +0000
commit85b4df53c0c7c538206244e9f7d0764380a909bb (patch)
tree72ed3a4d2e7380bc22fad9c4c729153feea5a247 /Zend/zend_globals.h
parent4e1c65b42bea6ef1fc7ca5d9655132e760a33f42 (diff)
downloadphp-git-85b4df53c0c7c538206244e9f7d0764380a909bb.tar.gz
Improved interactive mode - it is now available in all builds, without any significant slowdown
Diffstat (limited to 'Zend/zend_globals.h')
-rw-r--r--Zend/zend_globals.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_globals.h b/Zend/zend_globals.h
index 0d8789077f..fd6573ef23 100644
--- a/Zend/zend_globals.h
+++ b/Zend/zend_globals.h
@@ -111,6 +111,7 @@ struct _zend_compiler_globals {
zend_bool ini_parser_unbuffered_errors;
zend_llist open_files;
+
#if defined(ZTS) && defined(__cplusplus)
ZendFlexLexer *ZFL;
ZendIniFlexLexer *ini_scanner;
@@ -118,6 +119,8 @@ struct _zend_compiler_globals {
void *ZFL;
void *ini_parser;
#endif
+
+ int interactive;
};
@@ -195,9 +198,6 @@ struct _zend_executor_globals {
HashTable ini_directives;
void *reserved[ZEND_MAX_RESERVED_RESOURCES];
-#if SUPPORT_INTERACTIVE
- int interactive;
-#endif
};