|
Revision 204, 0.6 KB
(checked in by moo, 7 years ago)
|
|
coverager: new api xcache_coverager_start/xcache_coverager_stop/xcache_coverager_get(), coverager ini changed
|
| 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 | ZEND_END_MODULE_GLOBALS(xcache) |
|---|
| 18 | |
|---|
| 19 | ZEND_EXTERN_MODULE_GLOBALS(xcache) |
|---|
| 20 | |
|---|
| 21 | #ifdef ZTS |
|---|
| 22 | # define XG(v) TSRMG(xcache_globals_id, zend_xcache_globals *, v) |
|---|
| 23 | #else |
|---|
| 24 | # define XG(v) (xcache_globals.v) |
|---|
| 25 | #endif |
|---|