[PATCH] hrtimer: convert posix timers completely
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-frv / bug.h
blob451712cc30600901ba0cae6b28623f8d546debaf
1 /* bug.h: FRV bug trapping
3 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
11 #ifndef _ASM_BUG_H
12 #define _ASM_BUG_H
14 #include <linux/config.h>
15 #include <linux/linkage.h>
17 #ifdef CONFIG_BUG
19 * Tell the user there is some problem.
21 extern asmlinkage void __debug_bug_trap(int signr);
23 #ifdef CONFIG_NO_KERNEL_MSG
24 #define _debug_bug_printk()
25 #else
26 extern void __debug_bug_printk(const char *file, unsigned line);
27 #define _debug_bug_printk() __debug_bug_printk(__FILE__, __LINE__)
28 #endif
30 #define _debug_bug_trap(signr) \
31 do { \
32 __debug_bug_trap(signr); \
33 asm volatile("nop"); \
34 } while(0)
36 #define HAVE_ARCH_BUG
37 #define BUG() \
38 do { \
39 _debug_bug_printk(); \
40 _debug_bug_trap(6 /*SIGABRT*/); \
41 } while (0)
43 #ifdef CONFIG_GDBSTUB
44 #define HAVE_ARCH_KGDB_RAISE
45 #define kgdb_raise(signr) do { _debug_bug_trap(signr); } while(0)
47 #define HAVE_ARCH_KGDB_BAD_PAGE
48 #define kgdb_bad_page(page) do { kgdb_raise(SIGABRT); } while(0)
49 #endif
50 #endif
52 #include <asm-generic/bug.h>
54 #endif