Allow limiting debug warning messages.

Add macro debug_warning_n to stop printing a message after
N instances.

Change-Id: Id5f84b11eb63b3a20bd2bcb2ea8f10a066b457ef
Este commit está contenido en:
Sean Keely
2021-06-03 14:56:54 -05:00
padre 6b398eb72c
commit ca8387768e
+7 -3
Ver fichero
@@ -103,17 +103,21 @@ static __forceinline unsigned long long int strtoull(const char* str,
#define PASTE(x, y) PASTE2(x, y)
#ifdef NDEBUG
#define debug_warning(exp) \
#define debug_warning_n(exp, limit) \
do { \
} while (false)
#else
#define debug_warning(exp) \
#define debug_warning_n(exp, limit) \
do { \
if (!(exp)) \
static std::atomic<int> count(0); \
if (!(exp) && (limit == 0 || count < limit)) { \
fprintf(stderr, "Warning: " STRING(exp) " in %s, " __FILE__ ":" STRING(__LINE__) "\n", \
__PRETTY_FUNCTION__); \
count++; \
} \
} while (false)
#endif
#define debug_warning(exp) debug_warning_n((exp), 0)
#ifdef NDEBUG
#define debug_print(fmt, ...) \