bug.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* bug.h: FRV bug trapping
  2. *
  3. * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  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.
  10. */
  11. #ifndef _ASM_BUG_H
  12. #define _ASM_BUG_H
  13. #include <linux/config.h>
  14. /*
  15. * Tell the user there is some problem.
  16. */
  17. extern asmlinkage void __debug_bug_trap(int signr);
  18. #ifdef CONFIG_NO_KERNEL_MSG
  19. #define _debug_bug_printk()
  20. #else
  21. extern void __debug_bug_printk(const char *file, unsigned line);
  22. #define _debug_bug_printk() __debug_bug_printk(__FILE__, __LINE__)
  23. #endif
  24. #define _debug_bug_trap(signr) \
  25. do { \
  26. __debug_bug_trap(signr); \
  27. asm volatile("nop"); \
  28. } while(0)
  29. #define HAVE_ARCH_BUG
  30. #define BUG() \
  31. do { \
  32. _debug_bug_printk(); \
  33. _debug_bug_trap(6 /*SIGABRT*/); \
  34. } while (0)
  35. #ifdef CONFIG_GDBSTUB
  36. #define HAVE_ARCH_KGDB_RAISE
  37. #define kgdb_raise(signr) do { _debug_bug_trap(signr); } while(0)
  38. #define HAVE_ARCH_KGDB_BAD_PAGE
  39. #define kgdb_bad_page(page) do { kgdb_raise(SIGABRT); } while(0)
  40. #endif
  41. #include <asm-generic/bug.h>
  42. #endif