signal-common.h 919 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 1991, 1992  Linus Torvalds
 * Copyright (C) 1994 - 2000  Ralf Baechle
 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
 */

11 12
#ifndef __SIGNAL_COMMON_H
#define __SIGNAL_COMMON_H
13

14 15 16 17 18 19 20 21
/* #define DEBUG_SIG */

#ifdef DEBUG_SIG
#  define DEBUGP(fmt, args...) printk("%s: " fmt, __FUNCTION__ , ##args)
#else
#  define DEBUGP(fmt, args...)
#endif

22 23
#define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))

L
Linus Torvalds 已提交
24 25 26
/*
 * Determine which stack to use..
 */
27 28 29 30 31 32
extern void __user *get_sigframe(struct k_sigaction *ka, struct pt_regs *regs,
				 size_t frame_size);
/*
 * install trampoline code to get back from the sig handler
 */
extern int install_sigtramp(unsigned int __user *tramp, unsigned int syscall);
33

34
#endif	/* __SIGNAL_COMMON_H */