mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
16 lines
267 B
C
16 lines
267 B
C
// Copyright 2018 plutoo
|
|
#pragma once
|
|
#include "kernel/mutex.h"
|
|
|
|
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);
|