|
Revision 1003, 0.6 KB
(checked in by moo, 10 months ago)
|
|
refactor: fix build for optimizer, use mod_* directories
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | #include "php.h" |
|---|
| 2 | #include "xcache.h" |
|---|
| 3 | |
|---|
| 4 | void xc_coverager_handle_ext_stmt(zend_op_array *op_array, zend_uchar op); |
|---|
| 5 | int xc_coverager_module_init(int module_number TSRMLS_DC); |
|---|
| 6 | void xc_coverager_module_shutdown(); |
|---|
| 7 | void xc_coverager_request_init(TSRMLS_D); |
|---|
| 8 | void xc_coverager_request_shutdown(TSRMLS_D); |
|---|
| 9 | PHP_FUNCTION(xcache_coverager_decode); |
|---|
| 10 | PHP_FUNCTION(xcache_coverager_start); |
|---|
| 11 | PHP_FUNCTION(xcache_coverager_stop); |
|---|
| 12 | PHP_FUNCTION(xcache_coverager_get); |
|---|
| 13 | #define XCACHE_COVERAGER_FUNCTIONS() \ |
|---|
| 14 | PHP_FE(xcache_coverager_decode, NULL) \ |
|---|
| 15 | PHP_FE(xcache_coverager_start, NULL) \ |
|---|
| 16 | PHP_FE(xcache_coverager_stop, NULL) \ |
|---|
| 17 | PHP_FE(xcache_coverager_get, NULL) |
|---|