c11/threads: don't include assert.h if the assert macro is already defined
authorBrian Paul <brianp@vmware.com>
Tue, 18 Mar 2014 23:25:07 +0000 (17:25 -0600)
committerBrian Paul <brianp@vmware.com>
Wed, 19 Mar 2014 23:13:31 +0000 (17:13 -0600)
In the gallium code, the assert() macro could come from either the
system's assert.h file (via c11/threads.h) or from gallium's u_debug.h.
It looks like all known assert.h files unconditionally #undef assert
before defining their own version.  So the assert you get depends on
whether threads.h or u_debug.h was included last.

In the gallium code we really want to use the assert() from u_debug.h
(it behaves better on Windows).  In gallium, c11/threads.h is only
included after u_debug.h in the os_thread.h wrapper.  So Adding
an #ifndef assert test in the threads*.h files avoids using the system's
assert().

Cc: "10.1" <mesa-stable@lists.freedesktop.org>
Reviewed-by: José Fonseca <jfonseca@vmware.com>
include/c11/threads_posix.h
include/c11/threads_win32.h

index 7e96715c248825eb0f45f75925815f3b8be2429c..f9c165df4e0bb89305d09557a654f3ab5c107655 100644 (file)
@@ -27,7 +27,9 @@
  * DEALINGS IN THE SOFTWARE.
  */
 #include <stdlib.h>
+#ifndef assert
 #include <assert.h>
+#endif
 #include <limits.h>
 #include <errno.h>
 #include <unistd.h>
index d4c2a72d27718b3be79ac6328239e5dcb504801b..5298a84321d21f9ea8ee69144f700d84d997d85d 100644 (file)
@@ -26,7 +26,9 @@
  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  * DEALINGS IN THE SOFTWARE.
  */
+#ifndef assert
 #include <assert.h>
+#endif
 #include <limits.h>
 #include <errno.h>
 #include <process.h>  // MSVCRT