mesa: Add a MUST_CHECK macro for __attribute__((warn_unused_result)).
authorKenneth Graunke <kenneth@whitecape.org>
Mon, 6 Jul 2015 18:04:19 +0000 (11:04 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Mon, 6 Jul 2015 20:40:16 +0000 (13:40 -0700)
In the kernel, this is called __must_check; all our attribute macros in
Mesa appear to be uppercase, so I went with that.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Matt Turner <mattst88@gmail.com>
configure.ac
src/util/macros.h

index ea0f069cd310bc0f4afb2c9e73e86bc73af322b9..d240c06057360542964ab72842d9e30eba942dc0 100644 (file)
@@ -210,6 +210,7 @@ AX_GCC_FUNC_ATTRIBUTE([format])
 AX_GCC_FUNC_ATTRIBUTE([malloc])
 AX_GCC_FUNC_ATTRIBUTE([packed])
 AX_GCC_FUNC_ATTRIBUTE([unused])
+AX_GCC_FUNC_ATTRIBUTE([warn_unused_result])
 
 AM_CONDITIONAL([GEN_ASM_OFFSETS], test "x$GEN_ASM_OFFSETS" = xyes)
 
index 3b708ed6aa2afc09b6cb69ee2858359e78ddbca2..66698e7270169f2d3d80922c06d583f8e44e55bf 100644 (file)
@@ -182,6 +182,12 @@ do {                       \
 #define UNUSED
 #endif
 
+#ifdef HAVE_FUNC_ATTRIBUTE_WARN_UNUSED_RESULT
+#define MUST_CHECK __attribute__((warn_unused_result))
+#else
+#define MUST_CHECK
+#endif
+
 /** Compute ceiling of integer quotient of A divided by B. */
 #define DIV_ROUND_UP( A, B )  ( (A) % (B) == 0 ? (A)/(B) : (A)/(B)+1 )