libCom: Missing unlock in epicsThreadShow for RTEMS

fixes lp:1628323
This commit is contained in:
Jeff Hill
2016-09-27 21:36:28 -04:00
committed by Michael Davidsaver
parent 9de65e05d4
commit c2b17feaf1

View File

@@ -666,6 +666,7 @@ void epicsThreadShow (epicsThreadId id, unsigned int level)
for (v = taskVarHead ; v != NULL ; v = v->forw) {
if ((rtems_id)id == v->id) {
epicsThreadShowInfo (v, level);
taskVarUnlock ();
return;
}
}