Start to fix talloc memlimits with talloc pools.
authorJeremy Allison <jra@samba.org>
Tue, 27 Aug 2013 19:36:23 +0000 (12:36 -0700)
committerJeremy Allison <jra@samba.org>
Tue, 27 Aug 2013 22:44:19 +0000 (15:44 -0700)
commitfe790f6cbc9b888a8d613cfb515f0d0c76daad47
tree30b307f02aaa200c3cc9817332b6b9988d92f912
parent323cccd35d06c7327c19dc5cb891043507624d7d
Start to fix talloc memlimits with talloc pools.

Add the functions:

talloc_memlimit_grow(), talloc_memlimit_shrink(),
talloc_memlimit_update_on_free().

as replacements for talloc_memlimit_update().
The interface to talloc_memlimit_update() is very
hard to understand and use. The above functions
are (to me) much clearer.

The goal of these changes is to only update
the memlimits on malloc/free/realloc, not
on every pool allocation. That way we only
count pool creation as allocation from any
imposed limits, not allocation from an already
created pool.

Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Simo Sorce <idra@samba.org>
lib/talloc/talloc.c