You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#include "php.h"
|
|
|
|
#include "xcache.h"
|
|
|
|
|
|
|
|
void xc_coverager_handle_ext_stmt(zend_op_array *op_array, zend_uchar op);
|
|
|
|
int xc_coverager_module_init(int module_number TSRMLS_DC);
|
|
|
|
void xc_coverager_module_shutdown();
|
|
|
|
void xc_coverager_request_init(TSRMLS_D);
|
|
|
|
void xc_coverager_request_shutdown(TSRMLS_D);
|
|
|
|
PHP_FUNCTION(xcache_coverager_decode);
|
|
|
|
PHP_FUNCTION(xcache_coverager_start);
|
|
|
|
PHP_FUNCTION(xcache_coverager_stop);
|
|
|
|
PHP_FUNCTION(xcache_coverager_get);
|
|
|
|
#define XCACHE_COVERAGER_FUNCTIONS() \
|
|
|
|
PHP_FE(xcache_coverager_decode, NULL) \
|
|
|
|
PHP_FE(xcache_coverager_start, NULL) \
|
|
|
|
PHP_FE(xcache_coverager_stop, NULL) \
|
|
|
|
PHP_FE(xcache_coverager_get, NULL)
|