From ae058ec71765c088527d45741146e570d8032ab1 Mon Sep 17 00:00:00 2001 From: rich_sposato Date: Tue, 3 Apr 2012 05:46:56 +0000 Subject: [PATCH] Made documentation comment consistent. git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@1183 7ec92016-0320-0410-acc4-a06ded1c099a --- include/loki/LevelMutex.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/loki/LevelMutex.h b/include/loki/LevelMutex.h index 7a21d47..cd8b71a 100644 --- a/include/loki/LevelMutex.h +++ b/include/loki/LevelMutex.h @@ -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;