From a0e124c370de9365532b9c9b7979d8bc3974dccf Mon Sep 17 00:00:00 2001 From: Spoike Date: Sun, 14 Jun 2015 01:44:54 +0000 Subject: [PATCH] git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4897 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/common/sys_linux_threads.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/common/sys_linux_threads.c b/engine/common/sys_linux_threads.c index fb2b45b28..4abb7066f 100644 --- a/engine/common/sys_linux_threads.c +++ b/engine/common/sys_linux_threads.c @@ -34,7 +34,7 @@ void Sys_ThreadsInit(void) { mainthread = pthread_self(); } -static qboolean Sys_IsThread(void *thread) +qboolean Sys_IsThread(void *thread) { return pthread_equal(pthread_self(), *(pthread_t*)thread); }