Allow limiting debug warning messages.

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

Change-Id: Id5f84b11eb63b3a20bd2bcb2ea8f10a066b457ef


[ROCm/ROCR-Runtime commit: ca8387768e]
Cette révision appartient à :
Sean Keely
2021-06-03 14:56:54 -05:00
Parent 76c8067786
révision 2c4b216db6
+7 -3
Voir le fichier
@@ -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, ...) \