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
sinq.c
View File

@ -125,7 +125,7 @@ int SinqFactory(SConnection * pCon, SicsInterp * pSics,
for (i = 0; i < MAXLOG; i++) {
pNew->lastSinq[i] = -200;
}
TaskRegisterN(pServ->pTasker,"sinq", SinqTask, NULL, NULL, pNew, 1);
TaskRegisterN(pServ->pTasker,"sinq", SinqTask, NULL, NULL, pNew, TASK_PRIO_LOW);
return AddCommand(pSics, "sinq", SinqWrapper, KillSinq, pNew);
}