From a73125ccc6c19011ec9d07add1a069c911d784d2 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Wed, 14 Jun 2000 21:38:45 +0000 Subject: [PATCH] dont base priority on the server's priority --- src/libCom/error/errlog.c | 2 +- src/libCom/taskwd/taskwd.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libCom/error/errlog.c b/src/libCom/error/errlog.c index 15c73a63b..4a4e02588 100644 --- a/src/libCom/error/errlog.c +++ b/src/libCom/error/errlog.c @@ -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; diff --git a/src/libCom/taskwd/taskwd.c b/src/libCom/taskwd/taskwd.c index 5f01a062e..a5f1b8ebf 100644 --- a/src/libCom/taskwd/taskwd.c +++ b/src/libCom/taskwd/taskwd.c @@ -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); }