This commit is contained in:
lxsang
2019-12-15 18:23:01 +01:00
parent 63c65e0d46
commit b093bd0194
2 changed files with 5 additions and 3 deletions

View File

@ -226,8 +226,8 @@ antd_task_t* antd_create_task(void* (*handle)(void*), void *data, void* (*callba
task->handle = handle;
task->callback = callback_of(callback);
task->priority = NORMAL_PRIORITY;
task->type = HEAVY;
//task->type = LIGHT;
//task->type = HEAVY;
task->type = LIGHT;
task->access_time = atime;
return task;
}