summaryrefslogtreecommitdiff
path: root/pjlib/include/pj/pool.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2005-11-21 16:58:03 +0000
committerBenny Prijono <bennylp@teluu.com>2005-11-21 16:58:03 +0000
commit4a4fe6471b8a930ec49a28cced2f7a5ea55aee26 (patch)
treec18e62b2741adebd474ee15b56d5814ea044c9a0 /pjlib/include/pj/pool.h
parent5d8ed312c380f76e442ca170f0f791273c914bfa (diff)
Small optimization in pool (removed used_size)
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@69 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/include/pj/pool.h')
-rw-r--r--pjlib/include/pj/pool.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/pjlib/include/pj/pool.h b/pjlib/include/pj/pool.h
index c47195c8..93d67a90 100644
--- a/pjlib/include/pj/pool.h
+++ b/pjlib/include/pj/pool.h
@@ -151,9 +151,6 @@ struct pj_pool_t
/** Current capacity allocated by the pool. */
pj_size_t capacity;
- /** Number of memory used/allocated. */
- pj_size_t used_size;
-
/** Size of memory block to be allocated when the pool runs out of memory */
pj_size_t increment_size;