FastReaderReaderWriterLockImpl.h 323 B

12345678910111213141516171819
  1. #pragma once
  2. #if IL2CPP_THREADS_WIN32
  3. #include "ReaderWriterLockImpl.h"
  4. namespace il2cpp
  5. {
  6. namespace os
  7. {
  8. class FastReaderReaderWriterLockImpl : public ReaderWriterLockImpl
  9. {
  10. // Windows ReaderWriterLockImpl uses the Win32 SlimReaderWriterLock
  11. // which is fast for our purposes
  12. };
  13. }
  14. }
  15. #endif