kdebug.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. #ifndef _IA64_KDEBUG_H
  2. #define _IA64_KDEBUG_H 1
  3. /*
  4. * include/asm-ia64/kdebug.h
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19. *
  20. * Copyright (C) Intel Corporation, 2005
  21. *
  22. * 2005-Apr Rusty Lynch <rusty.lynch@intel.com> and Anil S Keshavamurthy
  23. * <anil.s.keshavamurthy@intel.com> adopted from
  24. * include/asm-x86_64/kdebug.h
  25. */
  26. #include <linux/notifier.h>
  27. struct pt_regs;
  28. struct die_args {
  29. struct pt_regs *regs;
  30. const char *str;
  31. long err;
  32. int trapnr;
  33. int signr;
  34. };
  35. int register_die_notifier(struct notifier_block *nb);
  36. extern struct notifier_block *ia64die_chain;
  37. enum die_val {
  38. DIE_BREAK = 1,
  39. DIE_SS,
  40. DIE_PAGE_FAULT,
  41. };
  42. static inline int notify_die(enum die_val val, char *str, struct pt_regs *regs,
  43. long err, int trap, int sig)
  44. {
  45. struct die_args args = {
  46. .regs = regs,
  47. .str = str,
  48. .err = err,
  49. .trapnr = trap,
  50. .signr = sig
  51. };
  52. return notifier_call_chain(&ia64die_chain, val, &args);
  53. }
  54. #endif