mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 11:15:15 +00:00
40 lines
710 B
C++
40 lines
710 B
C++
#pragma once
|
|
|
|
#include "thread/seadAtomic.h"
|
|
#include "thread/seadSemaphore.h"
|
|
|
|
namespace sead
|
|
{
|
|
class Thread;
|
|
|
|
class ReadWriteLock
|
|
{
|
|
public:
|
|
ReadWriteLock();
|
|
~ReadWriteLock();
|
|
void readLock();
|
|
void readUnlock();
|
|
void writeLock();
|
|
void writeUnlock();
|
|
|
|
private:
|
|
class SemaphoreLock
|
|
{
|
|
public:
|
|
SemaphoreLock();
|
|
void lock();
|
|
void unlock();
|
|
|
|
private:
|
|
Semaphore mSemaphore{0, 0x7FFF};
|
|
Atomic<u32> mLockCount{0};
|
|
};
|
|
|
|
Atomic<u32> mNumReaders{0};
|
|
Atomic<u32> mNumWriters{0};
|
|
SemaphoreLock mReadLock;
|
|
SemaphoreLock mWriteLock;
|
|
Thread* mWriterThread = nullptr;
|
|
u32 mWritingThreadCount{0};
|
|
};
|
|
} // namespace sead
|