aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sysrq.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/linux/sysrq.h
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'include/linux/sysrq.h')
-rw-r--r--include/linux/sysrq.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/include/linux/sysrq.h b/include/linux/sysrq.h
new file mode 100644
index 000000000000..ea819b89c235
--- /dev/null
+++ b/include/linux/sysrq.h
@@ -0,0 +1,60 @@
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
14#include <linux/config.h>
15
16struct pt_regs;
17struct tty_struct;
18
19/* Possible values of bitmask for enabling sysrq functions */
20/* 0x0001 is reserved for enable everything */
21#define SYSRQ_ENABLE_LOG 0x0002
22#define SYSRQ_ENABLE_KEYBOARD 0x0004
23#define SYSRQ_ENABLE_DUMP 0x0008
24#define SYSRQ_ENABLE_SYNC 0x0010
25#define SYSRQ_ENABLE_REMOUNT 0x0020
26#define SYSRQ_ENABLE_SIGNAL 0x0040
27#define SYSRQ_ENABLE_BOOT 0x0080
28#define SYSRQ_ENABLE_RTNICE 0x0100
29
30struct sysrq_key_op {
31 void (*handler)(int, struct pt_regs *, struct tty_struct *);
32 char *help_msg;
33 char *action_msg;
34 int enable_mask;
35};
36
37#ifdef CONFIG_MAGIC_SYSRQ
38
39/* Generic SysRq interface -- you may call it from any device driver, supplying
40 * ASCII code of the key, pointer to registers and kbd/tty structs (if they
41 * are available -- else NULL's).
42 */
43
44void handle_sysrq(int, struct pt_regs *, struct tty_struct *);
45void __handle_sysrq(int, struct pt_regs *, struct tty_struct *, int check_mask);
46int register_sysrq_key(int, struct sysrq_key_op *);
47int unregister_sysrq_key(int, struct sysrq_key_op *);
48struct sysrq_key_op *__sysrq_get_key_op(int key);
49
50#else
51
52static inline int __reterr(void)
53{
54 return -EINVAL;
55}
56
57#define register_sysrq_key(ig,nore) __reterr()
58#define unregister_sysrq_key(ig,nore) __reterr()
59
60#endif