From: Micah Dowty Date: Fri, 24 Apr 2009 21:45:16 +0000 (+0200) Subject: util: Add debug_printf_once X-Git-Tag: 062012170305~16521^2~547 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b618827fac84ca12a354da5808f30e96bedbc92a;p=profile%2Fivi%2Fmesa.git util: Add debug_printf_once --- diff --git a/src/gallium/auxiliary/util/u_debug.h b/src/gallium/auxiliary/util/u_debug.h index bcd8f0f..d42b65c 100644 --- a/src/gallium/auxiliary/util/u_debug.h +++ b/src/gallium/auxiliary/util/u_debug.h @@ -102,6 +102,22 @@ debug_printf(const char *format, ...) } +/* + * ... isn't portable so we need to pass arguments in parentheses. + * + * usage: + * debug_printf_once(("awnser: %i\n", 42)); + */ +#define debug_printf_once(args) \ + do { \ + static boolean once = TRUE; \ + if (once) { \ + once = FALSE; \ + debug_printf args; \ + } \ + } while (0) + + #ifdef DEBUG #define debug_vprintf(_format, _ap) _debug_vprintf(_format, _ap) #else