74 lines
1.6 KiB
C++
74 lines
1.6 KiB
C++
/**
|
|
* PANDA 3D SOFTWARE
|
|
* Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
*
|
|
* All use of this software is subject to the terms of the revised BSD
|
|
* license. You should have received a copy of this license along
|
|
* with this source code in a file named "LICENSE."
|
|
*
|
|
* @file mutexWin32Impl.h
|
|
* @author drose
|
|
* @date 2006-02-07
|
|
*/
|
|
|
|
#ifndef MUTEXWIN32IMPL_H
|
|
#define MUTEXWIN32IMPL_H
|
|
|
|
#include "dtoolbase.h"
|
|
#include "selectThreadImpl.h"
|
|
|
|
#ifdef WIN32_VC
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
|
#define WIN32_LEAN_AND_MEAN 1
|
|
#endif
|
|
#include <windows.h>
|
|
|
|
/**
|
|
* Uses SRWLock on Vista and above to implement a mutex. Older versions of
|
|
* Windows fall back to a combination of a spinlock and an Event object.
|
|
*/
|
|
class EXPCL_DTOOL_DTOOLBASE MutexWin32Impl {
|
|
public:
|
|
constexpr MutexWin32Impl() = default;
|
|
MutexWin32Impl(const MutexWin32Impl ©) = delete;
|
|
~MutexWin32Impl() = default;
|
|
|
|
MutexWin32Impl &operator = (const MutexWin32Impl ©) = delete;
|
|
|
|
public:
|
|
INLINE void lock();
|
|
INLINE bool try_lock();
|
|
INLINE void unlock();
|
|
|
|
private:
|
|
SRWLOCK _lock = SRWLOCK_INIT;
|
|
|
|
friend class ConditionVarWin32Impl;
|
|
};
|
|
|
|
/**
|
|
* Uses CRITICAL_SECTION to implement a recursive mutex.
|
|
*/
|
|
class EXPCL_DTOOL_DTOOLBASE ReMutexWin32Impl {
|
|
public:
|
|
ReMutexWin32Impl();
|
|
ReMutexWin32Impl(const ReMutexWin32Impl ©) = delete;
|
|
INLINE ~ReMutexWin32Impl();
|
|
|
|
ReMutexWin32Impl &operator = (const ReMutexWin32Impl ©) = delete;
|
|
|
|
public:
|
|
INLINE void lock();
|
|
INLINE bool try_lock();
|
|
INLINE void unlock();
|
|
|
|
private:
|
|
CRITICAL_SECTION _lock;
|
|
};
|
|
|
|
#include "mutexWin32Impl.I"
|
|
|
|
#endif // WIN32_VC
|
|
|
|
#endif
|