aboutsummaryrefslogtreecommitdiff
path: root/src/common/mempool.h
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2008-02-09 03:11:10 +0000
committerRoger Dingledine <arma@torproject.org>2008-02-09 03:11:10 +0000
commit509d2912dcc533ececaa9f09f96271ae57a7f275 (patch)
tree41fe2c4933605cee965a5328fb89e4a83bb004e3 /src/common/mempool.h
parentbe1e577d5e44d1ab1c9b180e644dc05872faa88a (diff)
downloadtor-509d2912dcc533ececaa9f09f96271ae57a7f275.tar
tor-509d2912dcc533ececaa9f09f96271ae57a7f275.tar.gz
doxygen and other cleanups
svn:r13440
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 2c5c925f7..2344c01cb 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
};