FreeListBlock
FreeListBlock *block;
FreeListBlock *next = fl->block;
FreeListBlock *block = next;
FreeListBlock *block = _new_FreeListBlock(fl);
static FreeListBlock *_new_FreeListBlock(FreeList *fl)
FreeListBlock *block; /* The new block to be returned */
block = (FreeListBlock *) malloc(sizeof(FreeListBlock));
static void _thread_FreeListBlock(FreeList *fl, FreeListBlock *block)
typedef struct FreeListBlock FreeListBlock;
static FreeListBlock *_del_FreeListBlock(FreeListBlock *fl)
FreeListBlock *next; /* The next block in the list */
FreeListBlock *block; /* The head of the list of free-list blocks */
static FreeListBlock *_new_FreeListBlock(FreeList *fl);
static FreeListBlock *_del_FreeListBlock(FreeListBlock *fl);
static void _thread_FreeListBlock(FreeList *fl, FreeListBlock *block);