remove err

This commit is contained in:
lxsang
2019-12-15 16:24:15 +01:00
parent 98feff09d6
commit e98970b378
3 changed files with 12 additions and 10 deletions

View File

@ -226,7 +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 = LIGHT;
task->type = HEAVY;
//task->type = LIGHT;
task->access_time = atime;
return task;
}