From 5fea2103d1be3a5029a7e78c9acafa5690d5b1d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ale=C5=A1=20Mlakar?= Date: Sun, 19 Dec 2021 16:44:17 +0100 Subject: [PATCH] NX: Mutex and thread NX ready (#270) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Aleš Mlakar --- src/mutex.cpp | 3 ++- src/thread.cpp | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/mutex.cpp b/src/mutex.cpp index d04d85e..a747836 100644 --- a/src/mutex.cpp +++ b/src/mutex.cpp @@ -17,7 +17,8 @@ || BX_PLATFORM_IOS \ || BX_PLATFORM_OSX \ || BX_PLATFORM_PS4 \ - || BX_PLATFORM_RPI + || BX_PLATFORM_RPI \ + || BX_PLATFORM_NX # include #elif BX_PLATFORM_WINDOWS \ || BX_PLATFORM_WINRT \ diff --git a/src/thread.cpp b/src/thread.cpp index 87cbc9a..9b61513 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -21,7 +21,8 @@ || BX_PLATFORM_IOS \ || BX_PLATFORM_OSX \ || BX_PLATFORM_PS4 \ - || BX_PLATFORM_RPI + || BX_PLATFORM_RPI \ + || BX_PLATFORM_NX # include # if defined(__FreeBSD__) # include