Show
Ignore:
Timestamp:
07/05/07 04:03:51 (17 months ago)
Author:
krobillard
Message:

Added component! & lit-select! datatypes.
ur_makeBlockT() now has a ptr return argument.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/thune/thread_safe/internal.h

    r408 r426  
    1717//#define BLK_DSTACK          4 
    1818 
     19enum ComponentContextValues 
     20{ 
     21    COMPONENT_SELF = 0, 
     22    COMPONENT_COUNTS, 
     23    COMPONENT_BODY, 
     24    COMPONENT_CELLS 
     25}; 
    1926 
    2027#define initGCArray(af) \ 
    2128    (af)->freeCount = 0; \ 
    2229    (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 ) 
    2335 
    2436