From ae3b909dcab7a2302771a4cd9c06e0513efe0000 Mon Sep 17 00:00:00 2001 From: koennecke Date: Wed, 21 Dec 2016 12:02:39 +0100 Subject: [PATCH] Fixed the fact that the EpicsTask in epicsadapter.c had an insufficient priority which stopped it from running. This in turn stopped necessary updates. All this incurred by a change from ANSTO --- epicsadapter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epicsadapter.c b/epicsadapter.c index b7d773f..55c68e8 100644 --- a/epicsadapter.c +++ b/epicsadapter.c @@ -85,7 +85,7 @@ static int makeEPICSContext(void *message, void *userData) epicsTaskID = TaskRegisterN(pServ->pTasker, "epics", EpicsTask, - NULL,NULL,NULL,1 + NULL,NULL,NULL,TASK_PRIO_MED ); } return MPCONTINUE;