aboutsummaryrefslogtreecommitdiff
path: root/src/common/mempool.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/mempool.c')
-rw-r--r--src/common/mempool.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/mempool.c b/src/common/mempool.c
index 853c2b371a..39bcbfc705 100644
--- a/src/common/mempool.c
+++ b/src/common/mempool.c
@@ -7,6 +7,10 @@
#define MEMPOOL_PRIVATE
#include "mempool.h"
+/* OVERVIEW:
+ * DOCDOC
+ */
+
/* DRAWBACKS:
* - Not even slightly threadsafe.
* - Likes to have lots of items per chunks.
@@ -17,6 +21,7 @@
* if you need doubles.
* - Could probably be optimized a bit; the representation contains
* a bit more info than it really needs to have.
+ * - probably, chunks should always be a power of 2.
*/
/* NOTES: