Changeset 882
- Timestamp:
- 2012-04-01T11:28:23+02:00 (14 months ago)
- File:
-
- 1 edited
-
trunk/xcache.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/xcache.c
r881 r882 186 186 static inline int xc_entry_equal_unlocked(xc_entry_type_t type, const xc_entry_t *entry1, const xc_entry_t *entry2) /* {{{ */ 187 187 { 188 /* this function isn't required but can be in dmz*/188 /* this function isn't required but can be in unlocked */ 189 189 switch (type) { 190 190 case XC_TYPE_PHP: … … 236 236 static inline int xc_entry_has_prefix_unlocked(xc_entry_type_t type, xc_entry_t *entry, zval *prefix) /* {{{ */ 237 237 { 238 /* this function isn't required but can be in dmz*/238 /* this function isn't required but can be in unlocked */ 239 239 240 240 #ifdef IS_UNICODE … … 435 435 #define XC_ENTRY_APPLY_FUNC(name) zend_bool name(xc_entry_t *entry TSRMLS_DC) 436 436 typedef XC_ENTRY_APPLY_FUNC((*cache_apply_unlocked_func_t)); 437 static void xc_entry_apply_unlocked(xc_entry_type_t type, xc_cache_t *cache, cache_apply_ dmz_func_t apply_func TSRMLS_DC) /* {{{ */437 static void xc_entry_apply_unlocked(xc_entry_type_t type, xc_cache_t *cache, cache_apply_unlocked_func_t apply_func TSRMLS_DC) /* {{{ */ 438 438 { 439 439 xc_entry_t *p, **pp; … … 458 458 #define XC_CACHE_APPLY_FUNC(name) void name(xc_cache_t *cache TSRMLS_DC) 459 459 /* call graph: 460 * xc_gc_expires_php -> xc_gc_expires_one -> xc_entry_apply_unlocked -> xc_gc_expires_php_entry_ dmz461 * xc_gc_expires_var -> xc_gc_expires_one -> xc_entry_apply_unlocked -> xc_gc_expires_var_entry_ dmz460 * xc_gc_expires_php -> xc_gc_expires_one -> xc_entry_apply_unlocked -> xc_gc_expires_php_entry_unlocked 461 * xc_gc_expires_var -> xc_gc_expires_one -> xc_entry_apply_unlocked -> xc_gc_expires_var_entry_unlocked 462 462 */ 463 463 static XC_ENTRY_APPLY_FUNC(xc_gc_expires_php_entry_unlocked) /* {{{ */
Note: See TracChangeset
for help on using the changeset viewer.

