* eina: add some doc for one big mempool.

SVN revision: 50834
This commit is contained in:
Cedric BAIL 2010-08-05 12:52:30 +00:00
parent e1d8b17d54
commit 476f09d29b
1 changed files with 3 additions and 0 deletions

View File

@ -316,6 +316,9 @@ eina_mempool_shutdown(void)
* @li @c pass_through: it just call malloc() and free(). It may be
* faster on some computers than using our own allocators (like having
* a huge L2 cache, over 4MB).
* @li @c one_big: It call just one time malloc for the requested number
* of items. Usefull when you know in advance how many object of some
* type will live during the life of the mempool.
*
* @{
*/