fixed throw spec

This commit is contained in:
Jeff Hill
2004-10-08 16:55:58 +00:00
parent 108a7a6e0f
commit 54a5a71377
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -241,12 +241,12 @@ bool epicsThread::operator == (const epicsThread &rhs) const throw ()
return (this->id == rhs.id);
}
void epicsThread::suspendSelf ()
void epicsThread::suspendSelf () throw ()
{
epicsThreadSuspendSelf ();
}
void epicsThread::sleep (double seconds)
void epicsThread::sleep (double seconds) throw ()
{
epicsThreadSleep (seconds);
}