tone down mempool sizes

SVN revision: 72254
This commit is contained in:
Carsten Haitzler 2012-06-17 01:54:28 +00:00
parent 4c9fe6ed70
commit 7e326357fb
2 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ ecore_mempool_init(void)
for (i = 0; i < sizeof (mempool_array) / sizeof (mempool_array[0]); ++i)
{
retry:
mempool_array[i]->mp = eina_mempool_add(choice, mempool_array[i]->name, NULL, mempool_array[i]->size, 64);
mempool_array[i]->mp = eina_mempool_add(choice, mempool_array[i]->name, NULL, mempool_array[i]->size, 16);
if (!mempool_array[i]->mp)
{
if (!strcmp(choice, "pass_through"))

View File

@ -69,7 +69,7 @@ ecore_con_mempool_init(void)
for (i = 0; i < sizeof (mempool_array) / sizeof (mempool_array[0]); ++i)
{
retry:
mempool_array[i]->mp = eina_mempool_add(choice, mempool_array[i]->name, NULL, mempool_array[i]->size, 64);
mempool_array[i]->mp = eina_mempool_add(choice, mempool_array[i]->name, NULL, mempool_array[i]->size, 16);
if (!mempool_array[i]->mp)
{
if (strcmp(choice, "pass_through") != 0)