Changeset 426 for branches/thune/thread_safe/internal.h
- Timestamp:
- 07/05/07 04:03:51 (17 months ago)
- Files:
-
- 1 modified
-
branches/thune/thread_safe/internal.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/thune/thread_safe/internal.h
r408 r426 17 17 //#define BLK_DSTACK 4 18 18 19 enum ComponentContextValues 20 { 21 COMPONENT_SELF = 0, 22 COMPONENT_COUNTS, 23 COMPONENT_BODY, 24 COMPONENT_CELLS 25 }; 19 26 20 27 #define initGCArray(af) \ 21 28 (af)->freeCount = 0; \ 22 29 (af)->freeList = -2 30 31 32 /* Get block ptr from thread storage */ 33 #define tBlockPtr(n) (((UBlock*) ut->blocks.arr.ptr.v) + (n)) 34 #define tBlock(bc) tBlockPtr( bc->series.n ) 23 35 24 36
