Files
eden/src/common/spin_lock.h
T

34 lines
706 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2020-02-04 11:23:12 -04:00
#pragma once
#include <atomic>
namespace Common {
2020-06-27 18:20:06 -04:00
/**
* SpinLock class
* a lock similar to mutex that forces a thread to spin wait instead calling the
* supervisor. Should be used on short sequences of code.
*/
2020-02-04 11:23:12 -04:00
class SpinLock {
public:
2020-11-04 20:41:16 -05:00
SpinLock() = default;
SpinLock(const SpinLock&) = delete;
SpinLock& operator=(const SpinLock&) = delete;
SpinLock(SpinLock&&) = delete;
SpinLock& operator=(SpinLock&&) = delete;
2020-02-04 11:23:12 -04:00
void lock();
void unlock();
[[nodiscard]] bool try_lock();
2020-02-04 11:23:12 -04:00
private:
std::atomic_flag lck = ATOMIC_FLAG_INIT;
};
} // namespace Common