Changeset 0af13b3 in git
- Timestamp:
- 2012-07-18T07:01:59Z (7 years ago)
- Branches:
- 3.0, 3.1, 3.2, master, trunk
- Children:
- 79feb1e
- Parents:
- e4f59e6
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
config.m4
r070be8e r0af13b3 26 26 xcache_sources=" 27 27 util/xc_stack.c \ 28 util/xc_trace.c \ 28 29 xcache.c \ 29 30 xcache/xc_const_string.c \ -
config.w32
r070be8e r0af13b3 14 14 var xcache_sources = " 15 15 util/xc_stack.c \ 16 util/xc_trace.c \ 16 17 xcache.c \ 17 18 xcache/xc_const_string.c \ -
util/xc_stack.c
ref5a13d r0af13b3 1 1 #include <stdlib.h> 2 #include <assert.h>2 #include "xc_trace.h" 3 3 #include "xc_stack.h" 4 4 5 typedef xc_stack_t* S; 5 6 -
xcache/xc_sandbox.c
re4f59e6 r0af13b3 433 433 /* }}} */ 434 434 #endif 435 436 int xc_vtrace(const char *fmt, va_list args) /* {{{ */437 {438 return vfprintf(stderr, fmt, args);439 }440 /* }}} */441 int xc_trace(const char *fmt, ...) /* {{{ */442 {443 va_list args;444 int ret;445 446 va_start(args, fmt);447 ret = xc_vtrace(fmt, args);448 va_end(args);449 return ret;450 }451 /* }}} */452 435 453 436 #ifndef ZEND_ENGINE_2_3 -
xcache/xc_utils.c
r070be8e r0af13b3 7 7 #endif 8 8 #include "xc_opcode_spec.h" 9 #undef NDEBUG 10 #include "assert.h" 9 #include "../util/xc_trace.h" 11 10 12 11 #ifndef max -
xcache/xc_utils.h
r070be8e r0af13b3 41 41 #endif 42 42 43 void xc_zend_class_add_ref(zend_class_entry ZESW(*ce, **ce));44 45 43 typedef zend_bool (*xc_if_func_t)(void *data); 46 44
Note: See TracChangeset
for help on using the changeset viewer.