Files
tp/include/JSystem/JAudio2/JASMutex.h
T

21 lines
308 B
C
Raw Normal View History

2023-08-02 11:30:52 +03:00
#ifndef JASMUTEX_H
#define JASMUTEX_H
#include <dolphin/os.h>
2023-08-02 11:30:52 +03:00
2024-04-12 00:10:30 -06:00
/**
* @ingroup jsystem-jaudio
*
*/
2023-08-02 11:30:52 +03:00
struct JASMutexLock {
JASMutexLock(OSMutex* mutex) {
mMutex = mutex;
2025-11-30 00:30:50 -05:00
OSLockMutex(mutex);
2023-08-02 11:30:52 +03:00
}
~JASMutexLock() { OSUnlockMutex(mMutex); }
/* 0x0 */ OSMutex* mMutex;
};
#endif