Stylistic change so I can put breakpoint on lines within Mutex functions.

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@628 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
rich_sposato 2006-04-15 00:39:50 +00:00
parent 5515cd1756
commit f19d9c93b1

View file

@ -159,16 +159,28 @@ namespace Loki
class Mutex class Mutex
{ {
public: public:
Mutex() { LOKI_THREADS_MUTEX_INIT ( (&mtx_) ); } Mutex()
~Mutex() { LOKI_THREADS_MUTEX_DELETE( (&mtx_) ); } {
void Lock() { LOKI_THREADS_MUTEX_LOCK ( (&mtx_) ); } LOKI_THREADS_MUTEX_INIT( (&mtx_) );
void Unlock() { LOKI_THREADS_MUTEX_UNLOCK( (&mtx_) ); } }
~Mutex()
{
LOKI_THREADS_MUTEX_DELETE( (&mtx_) );
}
void Lock()
{
LOKI_THREADS_MUTEX_LOCK( (&mtx_) );
}
void Unlock()
{
LOKI_THREADS_MUTEX_UNLOCK( (&mtx_) );
}
private: private:
/// Copy-constructor not implemented. /// Copy-constructor not implemented.
Mutex( const Mutex & ); Mutex( const Mutex & );
/// Copy-assignement operator not implemented. /// Copy-assignement operator not implemented.
Mutex & operator = ( const Mutex & ); Mutex & operator = ( const Mutex & );
LOKI_THREADS_MUTEX(mtx_;) LOKI_THREADS_MUTEX( mtx_; )
}; };
@ -395,6 +407,9 @@ namespace Loki
#endif #endif
// $Log$ // $Log$
// Revision 1.28 2006/04/15 00:39:50 rich_sposato
// Stylistic change so I can put breakpoint on lines within Mutex functions.
//
// Revision 1.27 2006/01/22 15:33:41 syntheticpp // Revision 1.27 2006/01/22 15:33:41 syntheticpp
// a -pedantic fix // a -pedantic fix
// //