Making this thread safe is probably overkill I guess? Reviewed-by: Bas Nieuwenhuizen <[email protected]>
On Thu, Nov 24, 2016 at 7:18 PM, Emil Velikov <[email protected]> wrote: > From: Emil Velikov <[email protected]> > > Signed-off-by: Emil Velikov <[email protected]> > --- > src/amd/vulkan/radv_private.h | 8 +++++++- > 1 file changed, 7 insertions(+), 1 deletion(-) > > diff --git a/src/amd/vulkan/radv_private.h b/src/amd/vulkan/radv_private.h > index a5d13a9..def0af2 100644 > --- a/src/amd/vulkan/radv_private.h > +++ b/src/amd/vulkan/radv_private.h > @@ -211,7 +211,13 @@ void radv_loge_v(const char *format, va_list va); > * Print a FINISHME message, including its source location. > */ > #define radv_finishme(format, ...) \ > - __radv_finishme(__FILE__, __LINE__, format, ##__VA_ARGS__); > + do { \ > + static bool reported = false; \ > + if (!reported) { \ > + __radv_finishme(__FILE__, __LINE__, format, > ##__VA_ARGS__); \ > + reported = true; \ > + } \ > + } while (0) > > /* A non-fatal assert. Useful for debugging. */ > #ifdef DEBUG > -- > 2.10.2 > > _______________________________________________ > mesa-dev mailing list > [email protected] > https://lists.freedesktop.org/mailman/listinfo/mesa-dev _______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
