From eaf552ed3273c19d3f036f121271f70cb0d430fb Mon Sep 17 00:00:00 2001 From: Jordi Mallach Date: Thu, 6 Oct 2016 05:00:56 +0200 Subject: [PATCH] Use the correct include for pthread_self() on the Hurd. (#129) --- include/bx/os.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bx/os.h b/include/bx/os.h index 327681d..58c315a 100644 --- a/include/bx/os.h +++ b/include/bx/os.h @@ -49,7 +49,7 @@ # elif BX_PLATFORM_OSX # include // mach_task_basic_info # elif BX_PLATFORM_HURD -# include // getpid +# include // pthread_self # elif BX_PLATFORM_ANDROID # include "debug.h" // getTid is not implemented... # endif // BX_PLATFORM_ANDROID