* [PATCH] kvm tool: Introduce own BUG_ON handler
@ 2011-12-20 16:58 Cyrill Gorcunov
0 siblings, 0 replies; only message in thread
From: Cyrill Gorcunov @ 2011-12-20 16:58 UTC (permalink / raw)
To: Pekka Enberg, Ingo Molnar; +Cc: Sasha Levin, Asias He, KVM-ML
Raise SIGABRT in case if run-time crtitical
problem found.
Proposed-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
---
Ingo, you meant something like below?
tools/kvm/include/kvm/util.h | 17 ++++++++++++++---
1 file changed, 14 insertions(+), 3 deletions(-)
Index: linux-2.6.git/tools/kvm/include/kvm/util.h
===================================================================
--- linux-2.6.git.orig/tools/kvm/include/kvm/util.h
+++ linux-2.6.git/tools/kvm/include/kvm/util.h
@@ -9,7 +9,6 @@
* Some bits are stolen from perf tool :)
*/
-#include <assert.h>
#include <unistd.h>
#include <stdio.h>
#include <stddef.h>
@@ -17,6 +16,7 @@
#include <stdarg.h>
#include <string.h>
#include <stdbool.h>
+#include <signal.h>
#include <errno.h>
#include <limits.h>
#include <sys/param.h>
@@ -51,9 +51,20 @@ extern void set_die_routine(void (*routi
__func__, __LINE__, ##__VA_ARGS__); \
} while (0)
-#
+
#define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
-#define BUG_ON(condition) assert(!(condition))
+
+#ifndef BUG_ON_HANDLER
+# define BUG_ON_HANDLER(condition) \
+ do { \
+ if ((condition)) { \
+ pr_err("BUG at %s:%d", __FILE__, __LINE__); \
+ raise(SIGABRT); \
+ } \
+ } while (0)
+#endif
+
+#define BUG_ON(condition) BUG_ON_HANDLER((condition))
#define DIE_IF(cnd) \
do { \
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2011-12-20 16:58 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-20 16:58 [PATCH] kvm tool: Introduce own BUG_ON handler Cyrill Gorcunov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).