From: Apple SWE Date: Wed, 14 Mar 2018 01:29:45 +0000 (-0700) Subject: sched.h needs to be imported on Darwin/OSX targets. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9dc5063262d0a5130cf0723a33079f3fd17560c3;p=mesa.git sched.h needs to be imported on Darwin/OSX targets. sched_yield is used but the include reference on Darwin is missing. This patch conditionally guards on Darwin/OSX to import sched.h first. Reviewed-by: Jeremy Huddleston Sequoia Signed-off-by: Jeremy Huddleston Sequoia --- diff --git a/src/gallium/drivers/swr/swr_fence.cpp b/src/gallium/drivers/swr/swr_fence.cpp index 3005eb9aaad..b05ac8cec02 100644 --- a/src/gallium/drivers/swr/swr_fence.cpp +++ b/src/gallium/drivers/swr/swr_fence.cpp @@ -29,6 +29,10 @@ #include "swr_screen.h" #include "swr_fence.h" +#ifdef __APPLE__ +#include +#endif + #if defined(PIPE_CC_MSVC) // portable thread yield #define sched_yield SwitchToThread #endif