Changeset 1060 for trunk/mod_coverager/xc_coverager.c
- Timestamp:
- 2012-07-27T10:35:59+02:00 (10 months ago)
- File:
-
- 1 edited
-
trunk/mod_coverager/xc_coverager.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/mod_coverager/xc_coverager.c
r1059 r1060 576 576 /* }}} */ 577 577 578 static int xc_optimizer_zend_startup(zend_extension *extension) /* {{{ */ 579 { 578 static int xc_coverager_zend_startup(zend_extension *extension) /* {{{ */ 579 { 580 old_compile_file = zend_compile_file; 581 zend_compile_file = xc_compile_file_for_coverage; 582 580 583 return SUCCESS; 581 584 } 582 585 /* }}} */ 583 static void xc_ optimizer_zend_shutdown(zend_extension *extension) /* {{{ */586 static void xc_coverager_zend_shutdown(zend_extension *extension) /* {{{ */ 584 587 { 585 588 /* empty */ … … 612 615 XCACHE_URL, 613 616 XCACHE_COPYRIGHT, 614 xc_ optimizer_zend_startup,615 xc_ optimizer_zend_shutdown,617 xc_coverager_zend_startup, 618 xc_coverager_zend_shutdown, 616 619 NULL, /* activate_func_t */ 617 620 NULL, /* deactivate_func_t */ … … 649 652 static PHP_MINIT_FUNCTION(xcache_coverager) /* {{{ */ 650 653 { 651 old_compile_file = zend_compile_file;652 zend_compile_file = xc_compile_file_for_coverage;653 654 654 REGISTER_INI_ENTRIES(); 655 655
Note: See TracChangeset
for help on using the changeset viewer.

