and back to 10k test, and only insert 8 items from the queue at a time.

SVN revision: 39089
This commit is contained in:
Carsten Haitzler 2009-02-19 06:29:07 +00:00
parent 20ab3d1d84
commit 8af44b2483
2 changed files with 2 additions and 2 deletions

View File

@ -2109,7 +2109,7 @@ my_bt_29(void *data, Evas_Object *obj, void *event_info)
itc1.func.state_get = gl_state_get;
itc1.func.del = gl_del;
for (i = 0; i < 100000; i++)
for (i = 0; i < 10000; i++)
{
gli = elm_genlist_item_append(gl, &itc1,
(void *)i/* item data */,

View File

@ -927,7 +927,7 @@ _item_idler(void *data)
Widget_Data *wd = data;
int n;
for (n = 0; (wd->queue) && (n < 32); n++)
for (n = 0; (wd->queue) && (n < 8); n++)
{
Item *it;