mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-16 03:18:14 -05:00
Common: Implement a basic SpinLock class
This commit is contained in:
20
src/common/spin_lock.h
Normal file
20
src/common/spin_lock.h
Normal file
@ -0,0 +1,20 @@
|
||||
// Copyright 2020 yuzu Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <atomic>
|
||||
|
||||
namespace Common {
|
||||
|
||||
class SpinLock {
|
||||
public:
|
||||
void lock();
|
||||
void unlock();
|
||||
|
||||
private:
|
||||
std::atomic_flag lck = ATOMIC_FLAG_INIT;
|
||||
};
|
||||
|
||||
} // namespace Common
|
Reference in New Issue
Block a user