sysrq.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /* -*- linux-c -*-
  2. *
  3. * $Id: sysrq.h,v 1.3 1997/07/17 11:54:33 mj Exp $
  4. *
  5. * Linux Magic System Request Key Hacks
  6. *
  7. * (c) 1997 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
  8. *
  9. * (c) 2000 Crutcher Dunnavant <crutcher+kernel@datastacks.com>
  10. * overhauled to use key registration
  11. * based upon discusions in irc://irc.openprojects.net/#kernelnewbies
  12. */
  13. #include <linux/config.h>
  14. struct pt_regs;
  15. struct tty_struct;
  16. /* Possible values of bitmask for enabling sysrq functions */
  17. /* 0x0001 is reserved for enable everything */
  18. #define SYSRQ_ENABLE_LOG 0x0002
  19. #define SYSRQ_ENABLE_KEYBOARD 0x0004
  20. #define SYSRQ_ENABLE_DUMP 0x0008
  21. #define SYSRQ_ENABLE_SYNC 0x0010
  22. #define SYSRQ_ENABLE_REMOUNT 0x0020
  23. #define SYSRQ_ENABLE_SIGNAL 0x0040
  24. #define SYSRQ_ENABLE_BOOT 0x0080
  25. #define SYSRQ_ENABLE_RTNICE 0x0100
  26. struct sysrq_key_op {
  27. void (*handler)(int, struct pt_regs *, struct tty_struct *);
  28. char *help_msg;
  29. char *action_msg;
  30. int enable_mask;
  31. };
  32. #ifdef CONFIG_MAGIC_SYSRQ
  33. /* Generic SysRq interface -- you may call it from any device driver, supplying
  34. * ASCII code of the key, pointer to registers and kbd/tty structs (if they
  35. * are available -- else NULL's).
  36. */
  37. void handle_sysrq(int, struct pt_regs *, struct tty_struct *);
  38. void __handle_sysrq(int, struct pt_regs *, struct tty_struct *, int check_mask);
  39. int register_sysrq_key(int, struct sysrq_key_op *);
  40. int unregister_sysrq_key(int, struct sysrq_key_op *);
  41. struct sysrq_key_op *__sysrq_get_key_op(int key);
  42. #else
  43. static inline int __reterr(void)
  44. {
  45. return -EINVAL;
  46. }
  47. #define register_sysrq_key(ig,nore) __reterr()
  48. #define unregister_sysrq_key(ig,nore) __reterr()
  49. #endif