dont base priority on the server's priority
This commit is contained in:
@@ -314,7 +314,7 @@ static void errlogInitPvt(void *arg)
|
||||
/*Allow an extra MAX_MESSAGE_SIZE for extra margain of safety*/
|
||||
pbuffer = pvtCalloc(pvtData.buffersize+MAX_MESSAGE_SIZE,sizeof(char));
|
||||
pvtData.pbuffer = pbuffer;
|
||||
tid = threadCreate("errlog",threadPriorityChannelAccessServer-2,
|
||||
tid = threadCreate("errlog",threadPriorityLow,
|
||||
threadGetStackSize(threadStackSmall),
|
||||
(THREADFUNC)errlogTask,0);
|
||||
if(tid) pvtData.errlogInitFailed = FALSE;
|
||||
|
||||
@@ -72,7 +72,7 @@ static void taskwdInitPvt(void *arg)
|
||||
ellInit(&list);
|
||||
ellInit(&anylist);
|
||||
taskwdid = threadCreate(
|
||||
"taskwd",threadPriorityChannelAccessServer-2,
|
||||
"taskwd",threadPriorityLow,
|
||||
threadGetStackSize(threadStackSmall),
|
||||
(THREADFUNC)taskwdTask,0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user