|
Last change
on this file since 662 was
662,
checked in by moo, 4 years ago
|
|
back patch __FILE and __DIR on cache restore
|
-
Property svn:eol-style set to
native
|
|
File size:
935 bytes
|
| Rev | Line | |
|---|
| [1] | 1 | |
|---|
| 2 | ZEND_BEGIN_MODULE_GLOBALS(xcache) |
|---|
| [405] | 3 | zend_bool initial_compile_file_called; /* true is origin_compile_file is called */ |
|---|
| [1] | 4 | zend_bool cacher; /* true if enabled */ |
|---|
| [165] | 5 | zend_bool stat; |
|---|
| [399] | 6 | zend_bool experimental; |
|---|
| [1] | 7 | #ifdef HAVE_XCACHE_OPTIMIZER |
|---|
| 8 | zend_bool optimizer; /* true if enabled */ |
|---|
| 9 | #endif |
|---|
| [28] | 10 | #ifdef HAVE_XCACHE_COVERAGER |
|---|
| [204] | 11 | zend_bool coverager; |
|---|
| 12 | zend_bool coverage_enabled; |
|---|
| [1] | 13 | HashTable *coverages; /* coverages[file][line] = times */ |
|---|
| 14 | #endif |
|---|
| 15 | xc_stack_t *php_holds; |
|---|
| 16 | xc_stack_t *var_holds; |
|---|
| 17 | time_t request_time; |
|---|
| [117] | 18 | long var_ttl; |
|---|
| [344] | 19 | |
|---|
| [656] | 20 | zend_llist gc_op_arrays; |
|---|
| [498] | 21 | |
|---|
| [588] | 22 | #ifdef HAVE_XCACHE_CONSTANT |
|---|
| 23 | HashTable internal_constant_table; |
|---|
| 24 | #endif |
|---|
| [344] | 25 | HashTable internal_function_table; |
|---|
| 26 | HashTable internal_class_table; |
|---|
| [435] | 27 | zend_bool internal_table_copied; |
|---|
| [496] | 28 | |
|---|
| 29 | void *sandbox; |
|---|
| [1] | 30 | ZEND_END_MODULE_GLOBALS(xcache) |
|---|
| 31 | |
|---|
| 32 | ZEND_EXTERN_MODULE_GLOBALS(xcache) |
|---|
| 33 | |
|---|
| 34 | #ifdef ZTS |
|---|
| 35 | # define XG(v) TSRMG(xcache_globals_id, zend_xcache_globals *, v) |
|---|
| 36 | #else |
|---|
| 37 | # define XG(v) (xcache_globals.v) |
|---|
| 38 | #endif |
|---|
Note: See
TracBrowser
for help on using the repository browser.