--- libaitsess/contrib/Attic/test_mem.c 2012/02/28 09:42:57 1.1.2.7 +++ libaitsess/contrib/Attic/test_mem.c 2012/02/28 10:34:43 1.1.2.8 @@ -21,6 +21,7 @@ main(int argc, char **argv) mpool_t *mp; void *addr; int i; + u_long curr; for (i = 0; i < 3; i++) { addr = malloc(4000); @@ -48,6 +49,9 @@ main(int argc, char **argv) // mpool_free(mp, addr, 0); } + mpool_getquota(mp, &curr, NULL); + printf("___current=%lu\n", curr); + printf("1) calls.act=%lu calls.inact=%lu calls.free=%lu; bytes.act=%lu bytes.inact=%lu bytes.free=%lu;\n", mp->pool_calls.alloc, mp->pool_calls.cache, mp->pool_calls.free, mp->pool_bytes.alloc, mp->pool_bytes.cache, mp->pool_bytes.free); @@ -61,6 +65,9 @@ main(int argc, char **argv) mpool_statistics(mp, show); mpool_purge(mp, 0); + + mpool_getquota(mp, &curr, NULL); + printf("___current=%lu\n", curr); printf("3) calls.act=%lu calls.inact=%lu calls.free=%lu; bytes.act=%lu bytes.inact=%lu bytes.free=%lu;\n", mp->pool_calls.alloc, mp->pool_calls.cache, mp->pool_calls.free,