Thread.cpp 233 B

123456789101112131415161718
  1. #include "il2cpp-config.h"
  2. #if IL2CPP_USE_GENERIC_THREAD
  3. #include "os/Thread.h"
  4. namespace il2cpp
  5. {
  6. namespace os
  7. {
  8. bool Thread::GetCurrentThreadStackBounds(void** low, void** high)
  9. {
  10. return false;
  11. }
  12. }
  13. }
  14. #endif