From 27bf33ac1b7873ce75c7dab3ea4245ce6c3dd706 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Wed, 18 Jan 2017 07:31:39 -0800 Subject: [PATCH] Fixed issue #134. --- include/bx/mutex.h | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/include/bx/mutex.h b/include/bx/mutex.h index 76a02e1..8de4b83 100644 --- a/include/bx/mutex.h +++ b/include/bx/mutex.h @@ -13,9 +13,17 @@ #if BX_CONFIG_SUPPORTS_THREADING -#if BX_PLATFORM_NACL || BX_PLATFORM_LINUX || BX_PLATFORM_ANDROID || BX_PLATFORM_OSX +#if 0 \ + || BX_PLATFORM_ANDROID \ + || BX_PLATFORM_LINUX \ + || BX_PLATFORM_NACL \ + || BX_PLATFORM_IOS \ + || BX_PLATFORM_OSX # include -#elif BX_PLATFORM_WINDOWS || BX_PLATFORM_XBOX360 || BX_PLATFORM_WINRT +#elif 0 \ + || BX_PLATFORM_WINDOWS \ + || BX_PLATFORM_WINRT \ + || BX_PLATFORM_XBOX360 # include #endif // BX_PLATFORM_