diff options
author | Roger Dingledine <arma@torproject.org> | 2008-02-09 03:11:10 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2008-02-09 03:11:10 +0000 |
commit | 509d2912dcc533ececaa9f09f96271ae57a7f275 (patch) | |
tree | 41fe2c4933605cee965a5328fb89e4a83bb004e3 /src/common/mempool.h | |
parent | be1e577d5e44d1ab1c9b180e644dc05872faa88a (diff) | |
download | tor-509d2912dcc533ececaa9f09f96271ae57a7f275.tar.gz tor-509d2912dcc533ececaa9f09f96271ae57a7f275.zip |
doxygen and other cleanups
svn:r13440
Diffstat (limited to 'src/common/mempool.h')
-rw-r--r-- | src/common/mempool.h | 6 |
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 }; |