Changeset 1188
- Timestamp:
- 12/07/2012 10:31:27 AM (6 months ago)
- Location:
- trunk/mod_cacher
- Files:
-
- 2 modified
-
xc_cache.h (modified) (1 diff)
-
xc_cacher.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/mod_cacher/xc_cache.h
r1132 r1188 185 185 /* }}} */ 186 186 187 intxc_is_rw(const void *p);188 intxc_is_ro(const void *p);189 intxc_is_shm(const void *p);187 zend_bool xc_is_rw(const void *p); 188 zend_bool xc_is_ro(const void *p); 189 zend_bool xc_is_shm(const void *p); 190 190 /* {{{ xc_gc_op_array_t */ 191 191 typedef struct { -
trunk/mod_cacher/xc_cacher.c
r1187 r1188 2254 2254 } 2255 2255 /* }}} */ 2256 intxc_is_shm(const void *p) /* {{{ */2256 zned_bool xc_is_shm(const void *p) /* {{{ */ 2257 2257 { 2258 2258 return xc_is_ro(p) || xc_is_rw(p);

