summaryrefslogtreecommitdiff
path: root/lib/pool_alloc.h
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2008-07-19 08:49:53 -0700
committerWayne Davison <wayned@samba.org>2008-07-19 09:20:56 -0700
commitfb01d1fb07f6efd3752ff895fe8a77e26a2b2055 (patch)
tree3fe8d6d44fa2754f865592b8f160214ef033c809 /lib/pool_alloc.h
parent51ce67d59968560f0e975dc97bb0a22a7edb0610 (diff)
downloadrsync-fb01d1fb07f6efd3752ff895fe8a77e26a2b2055.tar.gz
Changed the POOL_QALIGN flag to POOL_NO_QALIGN, reversing the setting
(making pools aligned by default). Added the missing code to make the documented behavior of pool_free() with a NULL addr work. Updated the pool_alloc.3 manpage.
Diffstat (limited to 'lib/pool_alloc.h')
-rw-r--r--lib/pool_alloc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pool_alloc.h b/lib/pool_alloc.h
index 91bd4256..c7368a77 100644
--- a/lib/pool_alloc.h
+++ b/lib/pool_alloc.h
@@ -1,7 +1,7 @@
#include <stddef.h>
#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_PREPEND (1<<3) /* or prepend to extent data */