From: Brian Date: Sat, 26 Jan 2008 23:05:35 +0000 (-0700) Subject: gallium: s/GLuint/unsigned/ to work with gallium when THREADS not defined X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ffeae750314b918839c118896a645d4f4f15d230;p=mesa.git gallium: s/GLuint/unsigned/ to work with gallium when THREADS not defined --- diff --git a/src/mesa/glapi/glthread.h b/src/mesa/glapi/glthread.h index a61086d0dc6..afb04f7bf2b 100644 --- a/src/mesa/glapi/glthread.h +++ b/src/mesa/glapi/glthread.h @@ -259,11 +259,11 @@ typedef benaphore _glthread_Mutex; * THREADS not defined */ -typedef GLuint _glthread_TSD; +typedef unsigned _glthread_TSD; -typedef GLuint _glthread_Thread; +typedef unsigned _glthread_Thread; -typedef GLuint _glthread_Mutex; +typedef unsigned _glthread_Mutex; #define _glthread_DECLARE_STATIC_MUTEX(name) static _glthread_Mutex name = 0