summaryrefslogtreecommitdiff
path: root/src/common/mempool.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/mempool.h')
-rw-r--r--src/common/mempool.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/mempool.h b/src/common/mempool.h
index 2c5c925f77..2344c01cba 100644
--- a/src/common/mempool.h
+++ b/src/common/mempool.h
@@ -50,11 +50,11 @@ struct mp_pool_t {
* padding. */
size_t item_alloc_size;
#ifdef MEMPOOL_STATS
- /** Total number of items allocated ever */
+ /** Total number of items allocated ever. */
uint64_t total_items_allocated;
- /** Total number of chunks allocated ever */
+ /** Total number of chunks allocated ever. */
uint64_t total_chunks_allocated;
- /** Total number of chunks freed ever */
+ /** Total number of chunks freed ever. */
uint64_t total_chunks_freed;
#endif
};