--- embedaddon/rsync/lib/pool_alloc.h 2012/02/17 15:09:30 1.1.1.1 +++ embedaddon/rsync/lib/pool_alloc.h 2013/10/14 07:51:14 1.1.1.2 @@ -1,9 +1,9 @@ #include #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_APPEND (1<<3) /* or appended to extent data */ +#define POOL_PREPEND (1<<3) /* or prepend to extent data */ typedef void *alloc_pool_t;