diff options
Diffstat (limited to 'src/common/memarea.c')
-rw-r--r-- | src/common/memarea.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/memarea.c b/src/common/memarea.c index 5c565cebe7..ff348770c3 100644 --- a/src/common/memarea.c +++ b/src/common/memarea.c @@ -85,7 +85,8 @@ alloc_chunk(size_t sz, int freelist_ok) } } -/* DOCDOC chunk_free */ +/** Release <b>chunk</b> from a memarea, either by adding it to the freelist + * or by freeing it if the freelist is already too big. */ static void chunk_free(memarea_chunk_t *chunk) { |