| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /**
- * 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 mutexSpinlockImpl.h
- * @author drose
- * @date 2006-04-11
- */
- #ifndef MUTEXSPINLOCKIMPL_H
- #define MUTEXSPINLOCKIMPL_H
- #include "dtoolbase.h"
- #include "selectThreadImpl.h"
- #ifdef MUTEX_SPINLOCK
- #include <atomic>
- /**
- * Uses a simple user-space spinlock to implement a mutex. It is usually not
- * a good idea to use this implementation, unless you are building Panda for a
- * specific application on a specific SMP machine, and you are confident that
- * you have at least as many CPU's as you have threads.
- */
- class EXPCL_DTOOL_DTOOLBASE MutexSpinlockImpl {
- public:
- constexpr MutexSpinlockImpl() noexcept = default;
- MutexSpinlockImpl(const MutexSpinlockImpl ©) = delete;
- MutexSpinlockImpl &operator = (const MutexSpinlockImpl ©) = delete;
- public:
- INLINE void lock();
- INLINE bool try_lock();
- INLINE void unlock();
- private:
- void do_lock();
- std::atomic_flag _flag = ATOMIC_FLAG_INIT;
- };
- #include "mutexSpinlockImpl.I"
- #endif // MUTEX_SPINLOCK
- #endif
|