commit 78325f4bae425a666c2b143f8c00b3f8d6a69415 parent 0fecd7671cc6585a6f51f7bf1b0ba17c25cbbd4e Author: Michael Savage <mikejsavage@gmail.com> Date: Mon Jan 23 20:56:52 +0200 PLATFORM_WINDOWS at the top Diffstat:
platform_thread.h | | | 4 | ++-- |
diff --git a/platform_thread.h b/platform_thread.h @@ -5,10 +5,10 @@ #if PLATFORM_RELACY // TODO: while( !go ) thread_yield(); should be turned into rl::backoff bo; while( !go ) bo.yield(); #define thread_yield() -#elif PLATFORM_UNIX -#include "unix_thread.h" #elif PLATFORM_WINDOWS #include "win32_thread.h" +#elif PLATFORM_UNIX +#include "unix_thread.h" #else #error new platform #endif