Changeset 965
- Timestamp:
- 2012-07-13T04:53:11+02:00 (11 months ago)
- File:
-
- 1 edited
-
trunk/xcache.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/xcache.c
r964 r965 184 184 /* }}} */ 185 185 186 static inline int xc_entry_equal_unlocked(xc_entry_type_t type, const xc_entry_t *entry1, const xc_entry_t *entry2 ) /* {{{ */186 static inline int xc_entry_equal_unlocked(xc_entry_type_t type, const xc_entry_t *entry1, const xc_entry_t *entry2 TSRMLS_DC) /* {{{ */ 187 187 { 188 188 /* this function isn't required but can be in unlocked */ … … 331 331 xc_entry_t *p; 332 332 for (p = *pp; p; pp = &(p->next), p = p->next) { 333 if (xc_entry_equal_unlocked(type, entry, p )) {333 if (xc_entry_equal_unlocked(type, entry, p TSRMLS_CC)) { 334 334 /* unlink */ 335 335 *pp = p->next; … … 345 345 xc_entry_t *p; 346 346 for (p = cache->entries[entryslotid]; p; p = p->next) { 347 if (xc_entry_equal_unlocked(type, entry, p )) {347 if (xc_entry_equal_unlocked(type, entry, p TSRMLS_CC)) { 348 348 zend_bool fresh; 349 349 switch (type) {
Note: See TracChangeset
for help on using the changeset viewer.

