mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 20:42:44 +02:00
14 lines
228 B
C
14 lines
228 B
C
// Copyright 2018 plutoo
|
|
|
|
typedef struct {
|
|
RMutex r;
|
|
RMutex g;
|
|
u64 b;
|
|
} RwLock;
|
|
|
|
void rwlockReadLock(RwLock* r);
|
|
void rwlockReadUnlock(RwLock* r);
|
|
|
|
void rwlockWriteLock(RwLock* r);
|
|
void rwlockWriteUnlock(RwLock* r);
|