Mesa (master): mapi: Make initMagic unsigned.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Thu Jan 26 17:36:33 UTC 2012


Module: Mesa
Branch: master
Commit: 6549e721addc8fdf6b44450bf40ca14052a7745d
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=6549e721addc8fdf6b44450bf40ca14052a7745d

Author: José Fonseca <jfonseca at vmware.com>
Date:   Thu Jan 26 17:33:33 2012 +0000

mapi: Make initMagic unsigned.

To avoid signed/unsigned comparison warnings against INIT_MAGIC
0xff8adc98, which doesn't fit on signed integers.

---

 src/mapi/mapi/u_thread.h |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/mapi/mapi/u_thread.h b/src/mapi/mapi/u_thread.h
index 0b2beef..ffe17b2 100644
--- a/src/mapi/mapi/u_thread.h
+++ b/src/mapi/mapi/u_thread.h
@@ -92,7 +92,7 @@ extern "C" {
 
 struct u_tsd {
    pthread_key_t key;
-   int initMagic;
+   unsigned initMagic;
 };
 
 typedef pthread_mutex_t u_mutex;
@@ -126,7 +126,7 @@ u_tsd_init(struct u_tsd *tsd)
 static INLINE void *
 u_tsd_get(struct u_tsd *tsd)
 {
-   if (tsd->initMagic != (int) INIT_MAGIC) {
+   if (tsd->initMagic != INIT_MAGIC) {
       u_tsd_init(tsd);
    }
    return pthread_getspecific(tsd->key);
@@ -136,7 +136,7 @@ u_tsd_get(struct u_tsd *tsd)
 static INLINE void
 u_tsd_set(struct u_tsd *tsd, void *ptr)
 {
-   if (tsd->initMagic != (int) INIT_MAGIC) {
+   if (tsd->initMagic != INIT_MAGIC) {
       u_tsd_init(tsd);
    }
    if (pthread_setspecific(tsd->key, ptr) != 0) {
@@ -157,7 +157,7 @@ u_tsd_set(struct u_tsd *tsd, void *ptr)
 
 struct u_tsd {
    DWORD key;
-   int   initMagic;
+   unsigned initMagic;
 };
 
 typedef CRITICAL_SECTION u_mutex;
@@ -234,7 +234,7 @@ u_tsd_set(struct u_tsd *tsd, void *ptr)
 #ifndef THREADS
 
 struct u_tsd {
-   int initMagic; 
+   unsigned initMagic;
 };
 
 typedef unsigned u_mutex;




More information about the mesa-commit mailing list