| 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 | |
|---|
| 20 | HashTable internal_function_table; |
|---|
| 21 | HashTable internal_class_table; |
|---|
| [1] | 22 | ZEND_END_MODULE_GLOBALS(xcache) |
|---|
| 23 | |
|---|
| 24 | ZEND_EXTERN_MODULE_GLOBALS(xcache) |
|---|
| 25 | |
|---|
| 26 | #ifdef ZTS |
|---|
| 27 | # define XG(v) TSRMG(xcache_globals_id, zend_xcache_globals *, v) |
|---|
| 28 | #else |
|---|
| 29 | # define XG(v) (xcache_globals.v) |
|---|
| 30 | #endif |
|---|
Note: See
TracBrowser
for help on using the repository browser.