version 1.1.1.1, 2012/02/17 15:09:30
|
version 1.1.1.2, 2013/10/14 07:51:14
|
Line 1
|
Line 1
|
#include <stddef.h> |
#include <stddef.h> |
|
|
#define POOL_CLEAR (1<<0) /* zero fill allocations */ |
#define POOL_CLEAR (1<<0) /* zero fill allocations */ |
#define POOL_QALIGN (1<<1) /* align data to quanta */ | #define POOL_NO_QALIGN (1<<1) /* don't align data to quanta */ |
#define POOL_INTERN (1<<2) /* Allocate extent structures */ |
#define POOL_INTERN (1<<2) /* Allocate extent structures */ |
#define POOL_APPEND (1<<3) /* or appended to extent data */ | #define POOL_PREPEND (1<<3) /* or prepend to extent data */ |
|
|
typedef void *alloc_pool_t; |
typedef void *alloc_pool_t; |
|
|