um: page_offset.h is never used
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / sysrq.h
blob7faf933cced7018657d2212d543530484ce17ec9
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>
18 #include <linux/types.h>
20 /* Enable/disable SYSRQ support by default (0==no, 1==yes). */
21 #define SYSRQ_DEFAULT_ENABLE 1
23 /* Possible values of bitmask for enabling sysrq functions */
24 /* 0x0001 is reserved for enable everything */
25 #define SYSRQ_ENABLE_LOG 0x0002
26 #define SYSRQ_ENABLE_KEYBOARD 0x0004
27 #define SYSRQ_ENABLE_DUMP 0x0008
28 #define SYSRQ_ENABLE_SYNC 0x0010
29 #define SYSRQ_ENABLE_REMOUNT 0x0020
30 #define SYSRQ_ENABLE_SIGNAL 0x0040
31 #define SYSRQ_ENABLE_BOOT 0x0080
32 #define SYSRQ_ENABLE_RTNICE 0x0100
34 struct sysrq_key_op {
35 void (*handler)(int);
36 char *help_msg;
37 char *action_msg;
38 int enable_mask;
41 #ifdef CONFIG_MAGIC_SYSRQ
43 /* Generic SysRq interface -- you may call it from any device driver, supplying
44 * ASCII code of the key, pointer to registers and kbd/tty structs (if they
45 * are available -- else NULL's).
48 void handle_sysrq(int key);
49 void __handle_sysrq(int key, bool check_mask);
50 int register_sysrq_key(int key, struct sysrq_key_op *op);
51 int unregister_sysrq_key(int key, struct sysrq_key_op *op);
52 struct sysrq_key_op *__sysrq_get_key_op(int key);
54 int sysrq_toggle_support(int enable_mask);
56 #else
58 static inline void handle_sysrq(int key)
62 static inline void __handle_sysrq(int key, bool check_mask)
66 static inline int register_sysrq_key(int key, struct sysrq_key_op *op)
68 return -EINVAL;
71 static inline int unregister_sysrq_key(int key, struct sysrq_key_op *op)
73 return -EINVAL;
76 #endif
78 #endif /* _LINUX_SYSRQ_H */