fix write

This commit is contained in:
lxsang
2019-12-19 09:52:56 +01:00
parent 457eefee25
commit 348dd45385
2 changed files with 4 additions and 5 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;
}