Changeset 990
- Timestamp:
- 2012-07-18T09:01:59+02:00 (10 months ago)
- Location:
- trunk
- Files:
-
- 1 added
- 6 edited
-
config.m4 (modified) (1 diff)
-
config.w32 (modified) (1 diff)
-
util/xc_stack.c (modified) (1 diff)
-
util/xc_trace.c (added)
-
xcache/xc_sandbox.c (modified) (1 diff)
-
xcache/xc_utils.c (modified) (1 diff)
-
xcache/xc_utils.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/config.m4
r987 r990 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 \ -
trunk/config.w32
r987 r990 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 \ -
trunk/util/xc_stack.c
r982 r990 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 -
trunk/xcache/xc_sandbox.c
r989 r990 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 -
trunk/xcache/xc_utils.c
r987 r990 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 -
trunk/xcache/xc_utils.h
r987 r990 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.

