simplify (handle recursive locking in RageMutex)

This commit is contained in:
Glenn Maynard
2004-06-11 19:08:56 +00:00
parent 0c7f5e113d
commit 4c14fb3943
5 changed files with 0 additions and 55 deletions
@@ -38,9 +38,6 @@ public:
struct MutexImpl_Pthreads: public MutexImpl
{
uint64_t LockedBy;
volatile int LockCnt;
pthread_mutex_t mutex;
MutexImpl_Pthreads( RageMutex *parent );
@@ -48,7 +45,6 @@ struct MutexImpl_Pthreads: public MutexImpl
bool Lock();
void Unlock();
uint64_t GetLockedByThreadId() const;
};
#endif