Changeset 992
- Timestamp:
- 2012-07-18T10:00:28+02:00 (10 months ago)
- Location:
- trunk
- Files:
-
- 6 edited
-
submodules/xc_coverager.c (modified) (2 diffs)
-
submodules/xc_coverager.h (modified) (1 diff)
-
xcache.c (modified) (2 diffs)
-
xcache/xc_sandbox.c (modified) (3 diffs)
-
xcache/xc_sandbox.h (modified) (1 diff)
-
xcache/xc_utils.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/submodules/xc_coverager.c
r982 r992 469 469 /* }}} */ 470 470 471 /* init/destroy*/472 int xc_coverager_ init(int module_number TSRMLS_DC) /* {{{ */471 /* MINIT/MSHUTDOWN */ 472 int xc_coverager_module_init(int module_number TSRMLS_DC) /* {{{ */ 473 473 { 474 474 old_compile_file = zend_compile_file; … … 493 493 } 494 494 /* }}} */ 495 void xc_coverager_ destroy() /* {{{ */495 void xc_coverager_module_shutdown() /* {{{ */ 496 496 { 497 497 if (old_compile_file == xc_compile_file_for_coverage) { -
trunk/submodules/xc_coverager.h
r982 r992 3 3 4 4 void xc_coverager_handle_ext_stmt(zend_op_array *op_array, zend_uchar op); 5 int xc_coverager_ init(int module_number TSRMLS_DC);6 void xc_coverager_ destroy();5 int xc_coverager_module_init(int module_number TSRMLS_DC); 6 void xc_coverager_module_shutdown(); 7 7 void xc_coverager_request_init(TSRMLS_D); 8 8 void xc_coverager_request_shutdown(TSRMLS_D); -
trunk/xcache.c
r987 r992 3940 3940 } 3941 3941 3942 xc_ util_init(module_number TSRMLS_CC);3942 xc_sandbox_module_init(module_number TSRMLS_CC); 3943 3943 #ifdef HAVE_XCACHE_COVERAGER 3944 xc_coverager_ init(module_number TSRMLS_CC);3944 xc_coverager_module_init(module_number TSRMLS_CC); 3945 3945 #endif 3946 3946 … … 3955 3955 { 3956 3956 #ifdef HAVE_XCACHE_COVERAGER 3957 xc_coverager_ destroy();3958 #endif 3959 xc_ util_destroy();3957 xc_coverager_module_shutdown(); 3958 #endif 3959 xc_sandbox_module_shutdown(); 3960 3960 3961 3961 if (xc_initized) { -
trunk/xcache/xc_sandbox.c
r991 r992 434 434 #endif 435 435 436 /* init/destroy*/437 int xc_ util_init(int module_number TSRMLS_DC) /* {{{ */436 /* MINIT/MSHUTDOWN */ 437 int xc_sandbox_module_init(int module_number TSRMLS_DC) /* {{{ */ 438 438 { 439 439 #ifdef XCACHE_ERROR_CACHING … … 445 445 } 446 446 /* }}} */ 447 void xc_ util_destroy() /* {{{ */447 void xc_sandbox_module_shutdown() /* {{{ */ 448 448 { 449 449 #ifdef XCACHE_ERROR_CACHING … … 454 454 } 455 455 /* }}} */ 456 -
trunk/xcache/xc_sandbox.h
r991 r992 8 8 /* Purpose: run specified function in compiler sandbox, restore everything to previous state after it returns 9 9 */ 10 11 int xc_sandbox_module_init(int module_number TSRMLS_DC); 12 void xc_sandbox_module_shutdown(); 10 13 11 14 /* return op_array to install */ -
trunk/xcache/xc_utils.h
r991 r992 1 1 #include "php.h" 2 2 #include "xcache.h" 3 4 int xc_util_init(int module_number TSRMLS_DC);5 void xc_util_destroy();6 3 7 4 typedef struct {
Note: See TracChangeset
for help on using the changeset viewer.

