mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 19:25:16 +00:00
41 lines
710 B
C
41 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
|