Made documentation comment consistent.

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@1183 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
rich_sposato 2012-04-03 05:46:56 +00:00
parent 0860583a99
commit ae058ec717

View file

@ -718,8 +718,8 @@ private:
either pthreads or the Windows CRITICAL_SECTION. If you want to use a mutex
mechanism besides one of those, then all you have to do is provide a class
which wraps the mutex and implements these functions.
explicit SpinLevelMutex( unsigned int level );
virtual ~SpinLevelMutex( void );
explicit MutexPolicy( unsigned int level );
virtual ~MutexPolicy( void );
virtual MutexErrors::Type Lock( void ) volatile;
virtual MutexErrors::Type TryLock( void ) volatile;
virtual MutexErrors::Type Unlock( void ) volatile;