dont base priority on the server's priority

This commit is contained in:
Jeff Hill
2000-06-14 21:38:45 +00:00
parent c5e7a1ed82
commit a73125ccc6
2 changed files with 2 additions and 2 deletions

View File

@@ -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;

View File

@@ -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);
}