Fixed up SICS task priorities

This commit is contained in:
2017-01-25 11:53:49 +01:00
parent 5ed400e2ff
commit 324d9f4bc1
4 changed files with 4 additions and 4 deletions

2
ease.c
View File

@ -840,7 +840,7 @@ static int EaseInit(SConnection * pCon, EaseBase * eab, int argc,
eab->task = FsmStartTask(eab, eab->handler, eab->idle, eab->p.name);
TaskRegisterN(pServ->pTasker,"ease", (TaskFunc) FsmTaskHandler, NULL, FsmKill,
eab->task, 0);
eab->task, TASK_PRIO_LOW);
return 1;
}