nand/denali: Fixed check patch warnings
[linux-2.6/kvm.git] / include / linux / sysrq.h
blob609e8ca5f53429bddfc2c29aee5e0411cfe464af
1 /* -*- linux-c -*-
3 * $Id: sysrq.h,v 1.3 1997/07/17 11:54:33 mj Exp $
5 * Linux Magic System Request Key Hacks
7 * (c) 1997 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
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
14 #ifndef _LINUX_SYSRQ_H
15 #define _LINUX_SYSRQ_H
17 #include <linux/errno.h>
19 struct pt_regs;
20 struct tty_struct;
22 /* Possible values of bitmask for enabling sysrq functions */
23 /* 0x0001 is reserved for enable everything */
24 #define SYSRQ_ENABLE_LOG 0x0002
25 #define SYSRQ_ENABLE_KEYBOARD 0x0004
26 #define SYSRQ_ENABLE_DUMP 0x0008
27 #define SYSRQ_ENABLE_SYNC 0x0010
28 #define SYSRQ_ENABLE_REMOUNT 0x0020
29 #define SYSRQ_ENABLE_SIGNAL 0x0040
30 #define SYSRQ_ENABLE_BOOT 0x0080
31 #define SYSRQ_ENABLE_RTNICE 0x0100
33 struct sysrq_key_op {
34 void (*handler)(int, struct tty_struct *);
35 char *help_msg;
36 char *action_msg;
37 int enable_mask;
40 #ifdef CONFIG_MAGIC_SYSRQ
42 /* Generic SysRq interface -- you may call it from any device driver, supplying
43 * ASCII code of the key, pointer to registers and kbd/tty structs (if they
44 * are available -- else NULL's).
47 void handle_sysrq(int key, struct tty_struct *tty);
48 void __handle_sysrq(int key, struct tty_struct *tty, int check_mask);
49 int register_sysrq_key(int key, struct sysrq_key_op *op);
50 int unregister_sysrq_key(int key, struct sysrq_key_op *op);
51 struct sysrq_key_op *__sysrq_get_key_op(int key);
53 int sysrq_toggle_support(int enable_mask);
55 #else
57 static inline void handle_sysrq(int key, struct tty_struct *tty)
61 static inline int register_sysrq_key(int key, struct sysrq_key_op *op)
63 return -EINVAL;
66 static inline int unregister_sysrq_key(int key, struct sysrq_key_op *op)
68 return -EINVAL;
71 #endif
73 #endif /* _LINUX_SYSRQ_H */