Files
RedHotRoast-ios/HybridCLRData/LocalIl2CppData-OSXEditor/il2cpp/libil2cpp/os/Win32/FastReaderReaderWriterLockImpl.h
T

20 lines
323 B
C++
Raw Normal View History

2026-07-17 14:03:00 +08:00
#pragma once
#if IL2CPP_THREADS_WIN32
#include "ReaderWriterLockImpl.h"
namespace il2cpp
{
namespace os
{
class FastReaderReaderWriterLockImpl : public ReaderWriterLockImpl
{
// Windows ReaderWriterLockImpl uses the Win32 SlimReaderWriterLock
// which is fast for our purposes
};
}
}
#endif