diff options
author | José Fonseca <[email protected]> | 2008-06-24 10:56:36 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-06-24 11:00:01 +0900 |
commit | c921a29b3a696f6fa99b648d6cd975dbcf106429 (patch) | |
tree | 30ff344e410f938389add32a6e314f49161aadeb /src/mesa/glapi | |
parent | c47248bdf8d55f985b199fc6e15b0177305cb6fd (diff) |
mesa: Replace abort by asserts.
Diffstat (limited to 'src/mesa/glapi')
-rw-r--r-- | src/mesa/glapi/glthread.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/glapi/glthread.h b/src/mesa/glapi/glthread.h index b8e9d5f59b8..ad2a63584b7 100644 --- a/src/mesa/glapi/glthread.h +++ b/src/mesa/glapi/glthread.h @@ -144,19 +144,19 @@ typedef unsigned int _glthread_Cond; // #warning Condition variables not implemented. #define _glthread_INIT_COND(cond) \ - abort(); + ASSERT(0); #define _glthread_DESTROY_COND(name) \ - abort(); + ASSERT(0); #define _glthread_COND_WAIT(cond, mutex) \ - abort(); + ASSERT(0); #define _glthread_COND_SIGNAL(cond) \ - abort(); + ASSERT(0); #define _glthread_COND_BROADCAST(cond) \ - abort(); + ASSERT(0); #endif |