From 0ad4b0b697149d59f00ebe43289a76b410798552 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 21 May 2018 12:00:21 -0400 Subject: [PATCH] thread: fixed compiler warnings on non-Linux systems that use pthread. (static function rtkit_setpriority was unused, moved it in with rest of __LINUX__ section.) --- src/thread/pthread/SDL_systhread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thread/pthread/SDL_systhread.c b/src/thread/pthread/SDL_systhread.c index 28a1a58fbbe21..ec329379e679d 100644 --- a/src/thread/pthread/SDL_systhread.c +++ b/src/thread/pthread/SDL_systhread.c @@ -184,6 +184,7 @@ SDL_ThreadID(void) return ((SDL_threadID) pthread_self()); } +#if __LINUX__ /* d-bus queries to org.freedesktop.RealtimeKit1. */ #if SDL_USE_LIBDBUS @@ -237,7 +238,6 @@ rtkit_setpriority(pid_t thread, int nice_level) #endif /* !SDL_USE_LIBDBUS */ -#if __LINUX__ int SDL_LinuxSetThreadPriority(Sint64 threadID, int priority) {