43 #include <sys/types.h>
63 int maxFreeListLength;
83 int maxFreeListLength);
Definition: FreeList.h:50
int FreeListFree(FreeList *free_list, void *element)
Returns an item to the Free List.
Definition: FreeList.c:72
struct FREELISTNODE FreeListNode
Definition: FreeList.h:59
int FreeListDestroy(FreeList *free_list)
Releases the resources stored with the free list.
Definition: FreeList.c:93
int FreeListInit(FreeList *free_list, size_t elementSize, int maxFreeListLength)
Initializes Free List.
Definition: FreeList.c:38
void * FreeListAlloc(FreeList *free_list)
Allocates chunk of set size.
Definition: FreeList.c:52