Changeset 857 for trunk/xcache.c
- Timestamp:
- 2012-03-28T14:19:19+02:00 (14 months ago)
- File:
-
- 1 edited
-
trunk/xcache.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/xcache.c
r856 r857 1775 1775 CG(in_compilation) = 0; 1776 1776 CG(compiled_filename) = NULL; 1777 TRACE("restored %s", stored_xce-> name.str.val);1777 TRACE("restored %s", stored_xce->entry.name.str.val); 1778 1778 return op_array; 1779 1779 } … … 1809 1809 xc_cache_hit_dmz(cache TSRMLS_CC); 1810 1810 1811 TRACE("hit %s, holding", stored_xce-> name.str.val);1811 TRACE("hit %s, holding", stored_xce->entry.name.str.val); 1812 1812 xc_entry_hold_php_dmz(cache, stored_xce TSRMLS_CC); 1813 1813 } 1814 1814 else { 1815 1815 cache->misses ++; 1816 TRACE("miss %s", xce-> name.str.val);1816 TRACE("miss %s", xce->entry.name.str.val); 1817 1817 1818 1818 if (xc_entry_init_key_php_md5(cache, xce->php, xce TSRMLS_CC) != SUCCESS) { … … 2904 2904 stored_xce = (xc_entry_var_t *) xc_entry_find_dmz(XC_TYPE_VAR, cache, entry_hash.cacheslotid, (xc_entry_t *) &xce TSRMLS_CC); 2905 2905 if (stored_xce) { 2906 TRACE("incdec: gotxce %s", xce. name.str.val);2906 TRACE("incdec: gotxce %s", xce.entry.name.str.val); 2907 2907 /* timeout */ 2908 2908 if (VAR_ENTRY_EXPIRED(&(stored_xce->entry))) { … … 2936 2936 } 2937 2937 else { 2938 TRACE("incdec: %s not found", xce. name.str.val);2938 TRACE("incdec: %s not found", xce.entry.name.str.val); 2939 2939 } 2940 2940
Note: See TracChangeset
for help on using the changeset viewer.

