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
This commit is contained in:
2016-12-21 12:02:39 +01:00
parent 116ee50ce3
commit ae3b909dca

View File

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