sysrq.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. #ifndef _LINUX_SYSRQ_H
  14. #define _LINUX_SYSRQ_H
  15. #include <linux/errno.h>
  16. struct pt_regs;
  17. struct tty_struct;
  18. /* Possible values of bitmask for enabling sysrq functions */
  19. /* 0x0001 is reserved for enable everything */
  20. #define SYSRQ_ENABLE_LOG 0x0002
  21. #define SYSRQ_ENABLE_KEYBOARD 0x0004
  22. #define SYSRQ_ENABLE_DUMP 0x0008
  23. #define SYSRQ_ENABLE_SYNC 0x0010
  24. #define SYSRQ_ENABLE_REMOUNT 0x0020
  25. #define SYSRQ_ENABLE_SIGNAL 0x0040
  26. #define SYSRQ_ENABLE_BOOT 0x0080
  27. #define SYSRQ_ENABLE_RTNICE 0x0100
  28. struct sysrq_key_op {
  29. void (*handler)(int, struct tty_struct *);
  30. char *help_msg;
  31. char *action_msg;
  32. int enable_mask;
  33. };
  34. #ifdef CONFIG_MAGIC_SYSRQ
  35. extern int sysrq_on(void);
  36. /*
  37. * Do not use this one directly:
  38. */
  39. extern int __sysrq_enabled;
  40. /* Generic SysRq interface -- you may call it from any device driver, supplying
  41. * ASCII code of the key, pointer to registers and kbd/tty structs (if they
  42. * are available -- else NULL's).
  43. */
  44. void handle_sysrq(int key, struct tty_struct *tty);
  45. void __handle_sysrq(int key, struct tty_struct *tty, int check_mask);
  46. int register_sysrq_key(int key, struct sysrq_key_op *op);
  47. int unregister_sysrq_key(int key, struct sysrq_key_op *op);
  48. struct sysrq_key_op *__sysrq_get_key_op(int key);
  49. #else
  50. static inline int sysrq_on(void)
  51. {
  52. return 0;
  53. }
  54. static inline int __reterr(void)
  55. {
  56. return -EINVAL;
  57. }
  58. static inline void handle_sysrq(int key, struct tty_struct *tty)
  59. {
  60. }
  61. #define register_sysrq_key(ig,nore) __reterr()
  62. #define unregister_sysrq_key(ig,nore) __reterr()
  63. #endif
  64. #endif /* _LINUX_SYSRQ_H */