made lock members const

This commit is contained in:
Jeff Hill
2000-09-07 01:31:27 +00:00
parent ef77d41cc1
commit 8ad391b0c5

View File

@@ -117,12 +117,12 @@ void syncGroupNotify::exceptionNotify ( int status, const char *pContext, unsign
type, count, pContext);
}
void syncGroupNotify::lock ()
void syncGroupNotify::lock () const
{
this->sg.mutex.lock ();
}
void syncGroupNotify::unlock ()
void syncGroupNotify::unlock () const
{
this->sg.mutex.unlock ();
}