Changeset 1546 in svn
- Timestamp:
- 2014-09-18T11:48:00Z (4 years ago)
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/NEWS
r1540 r1546 1 3.2. 12014-09-181 3.2.0 2014-09-18 2 2 ======== 3 3 * PHP_5_6 support -
trunk/NEWS
r1539 r1546 6 6 * updated disassembler decompiler support 7 7 8 3.2. 12014-09-188 3.2.0 2014-09-18 9 9 ======== 10 10 * PHP_5_6 support -
trunk/processor/head.m4
r1490 r1546 19 19 #include "xcache/xc_utils.h" 20 20 #include "util/xc_align.h" 21 #include "util/xc_trace.h" 21 22 #include "xcache_globals.h" 22 23 … … 226 227 227 228 if (zend_u_hash_find(&processor->strings, type, str, (uint) size, (void **) &pret) == SUCCESS) { 229 TRACE("found old string %s:%ld %p", str, size, *pret); 228 230 return *pret; 229 231 } … … 233 235 memcpy(ZSTR_V(ret), ZSTR_V(str), realsize); 234 236 zend_u_hash_add(&processor->strings, type, str, (uint) size, (void *) &ret, sizeof(zstr), NULL); 237 TRACE("stored new string %s:%ld %p", str, size, ret); 235 238 return ret; 236 239 -
trunk/processor/processor.m4
r1530 r1546 164 164 #endif 165 165 PROCESS(int, value.str.len) 166 IFRESTORE(` 167 TRACE("%p, %p, %d", src->value.str.val, processor->entry_php_src->filepath.str, src->value.str.val == processor->entry_php_src->filepath.str); 168 ') 166 169 PROC_STRING_L(value.str.val, value.str.len) 170 dnl IFSTORE(` 171 dnl TRACE("%s, %d", dst->value.str.val, dst->value.str.val == processor->entry_php_dst->filepath.str); 172 dnl ') 167 173 break; 168 174 #ifdef IS_UNICODE
Note: See TracChangeset
for help on using the changeset viewer.