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
@@ -22,9 +22,6 @@ public:
struct MutexImpl_Win32: public MutexImpl
{
uint64_t LockedBy;
volatile int LockCnt;
HANDLE mutex;
MutexImpl_Win32( RageMutex *parent );
@@ -32,7 +29,6 @@ struct MutexImpl_Win32: public MutexImpl
bool Lock();
void Unlock();
uint64_t GetLockedByThreadId() const;
};
#endif