|
Revision 393, 0.7 KB
(checked in by moo, 6 years ago)
|
|
set svn:eol-style
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | |
|---|
| 2 | ZEND_BEGIN_MODULE_GLOBALS(xcache) |
|---|
| 3 | zend_bool cacher; /* true if enabled */ |
|---|
| 4 | zend_bool stat; |
|---|
| 5 | #ifdef HAVE_XCACHE_OPTIMIZER |
|---|
| 6 | zend_bool optimizer; /* true if enabled */ |
|---|
| 7 | #endif |
|---|
| 8 | #ifdef HAVE_XCACHE_COVERAGER |
|---|
| 9 | zend_bool coverager; |
|---|
| 10 | zend_bool coverage_enabled; |
|---|
| 11 | HashTable *coverages; /* coverages[file][line] = times */ |
|---|
| 12 | #endif |
|---|
| 13 | xc_stack_t *php_holds; |
|---|
| 14 | xc_stack_t *var_holds; |
|---|
| 15 | time_t request_time; |
|---|
| 16 | long var_ttl; |
|---|
| 17 | |
|---|
| 18 | HashTable internal_function_table; |
|---|
| 19 | HashTable internal_class_table; |
|---|
| 20 | ZEND_END_MODULE_GLOBALS(xcache) |
|---|
| 21 | |
|---|
| 22 | ZEND_EXTERN_MODULE_GLOBALS(xcache) |
|---|
| 23 | |
|---|
| 24 | #ifdef ZTS |
|---|
| 25 | # define XG(v) TSRMG(xcache_globals_id, zend_xcache_globals *, v) |
|---|
| 26 | #else |
|---|
| 27 | # define XG(v) (xcache_globals.v) |
|---|
| 28 | #endif |
|---|