Changeset 813 for branches/1.3
- Timestamp:
- 2011-06-04T04:32:32+02:00 (2 years ago)
- Location:
- branches/1.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.3
-
branches/1.3/xcache.c
r784 r813 2289 2289 } 2290 2290 2291 RETURN_LONG(Z_REFCOUNT _P(variable));2291 RETURN_LONG(Z_REFCOUNT(*variable)); 2292 2292 } 2293 2293 /* }}} */ … … 2305 2305 } 2306 2306 2307 RETURN_BOOL(Z_ISREF _P(variable) && Z_REFCOUNT_P(variable) >= 3);2307 RETURN_BOOL(Z_ISREF(*variable) && Z_REFCOUNT(*variable) >= 3); 2308 2308 } 2309 2309 /* }}} */ -
branches/1.3/xcache.h
r772 r813 54 54 # define ALLOCA_FLAG(x) 55 55 #endif 56 #ifndef Z_ISREF 57 # define Z_ISREF(z) (z).is_ref 58 #endif 56 59 #ifndef Z_SET_ISREF 57 60 # define Z_SET_ISREF(z) (z).is_ref = 1 … … 59 62 #ifndef Z_UNSET_ISREF 60 63 # define Z_UNSET_ISREF(z) (z).is_ref = 0 64 #endif 65 #ifndef Z_REFCOUNT 66 # define Z_REFCOUNT(z) (z).refcount 61 67 #endif 62 68 #ifndef Z_SET_REFCOUNT
Note: See TracChangeset
for help on using the changeset viewer.

