epicsThreadJoin() -> epicsThreadMustJoin()

This commit is contained in:
Michael Davidsaver
2019-06-23 07:30:48 -07:00
parent e8db975e7f
commit 5efce9ecc0
6 changed files with 9 additions and 9 deletions

View File

@@ -158,7 +158,7 @@ bool epicsThread::exitWait ( const double delay ) throw ()
epicsGuard < epicsMutex > guard ( this->mutex );
joined = true;
}
epicsThreadJoin(this->id);
epicsThreadMustJoin(this->id);
}
return true;
}
@@ -177,7 +177,7 @@ bool epicsThread::exitWait ( const double delay ) throw ()
joined = true;
epicsGuardRelease < epicsMutex > unguard ( guard );
epicsThreadJoin(this->id);
epicsThreadMustJoin(this->id);
}
}
catch ( std :: exception & except ) {