Changeset 295
- Timestamp:
- 12/03/2006 01:48:53 AM (2 years ago)
- Location:
- trunk
- Files:
-
- 4 modified
-
processor/head.m4 (modified) (1 diff)
-
processor/main.m4 (modified) (1 diff)
-
utils.c (modified) (2 diffs)
-
xcache.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/processor/head.m4
r233 r295 89 89 static void xc_dprint_str_len(const char *str, int len) /* {{{ */ 90 90 { 91 const unsigned char *p = str;91 const unsigned char *p = (const unsigned char *) str; 92 92 int i; 93 93 for (i = 0; i < len; i ++) { -
trunk/processor/main.m4
r292 r295 46 46 unsigned long real = SIZE; 47 47 if (expect != real) { 48 fprintf(stderr, "mismatch `$@' at line %d(was % d): real %lu - expect %lu = %l\n", __LINE__, atline, real, expect, real - expect);48 fprintf(stderr, "mismatch `$@' at line %d(was %lu): real %lu - expect %lu = %lu\n", __LINE__, atline, real, expect, real - expect); 49 49 } 50 50 } -
trunk/utils.c
r294 r295 280 280 { 281 281 zend_op *opline, *begin, *end, *next = NULL; 282 xc_cest_t cest;283 282 284 283 opline = begin = op_array->opcodes; … … 325 324 } 326 325 } 326 return SUCCESS; 327 327 } 328 328 /* }}} */ 329 329 static int xc_do_early_binding(zend_op_array *op_array, HashTable *class_table, int oplineno TSRMLS_DC) /* {{{ */ 330 330 { 331 zend_op *opline , *opcodes;331 zend_op *opline; 332 332 333 333 #ifdef DEBUG -
trunk/xcache.c
r283 r295 2388 2388 zend_llist_del_element(&zend_extensions, extension, xc_ptr_compare_func); 2389 2389 zend_extensions.dtor = dtor; 2390 return SUCCESS; 2390 2391 } 2391 2392 /* }}} */

