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

20 lines
371 B
C++
Raw Normal View History

#ifndef JASCRITICALSECTION_H
#define JASCRITICALSECTION_H
#include <dolphin/os.h>
2024-04-12 00:10:30 -06:00
/**
* @ingroup jsystem-jaudio
*
*/
class JASCriticalSection {
public:
JASCriticalSection() { mInterruptState = OSDisableInterrupts(); };
~JASCriticalSection() { OSRestoreInterrupts(mInterruptState); };
private:
u32 mInterruptState;
};
#endif /* JASCRITICALSECTION_H */