aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-i386/signal.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-i386/signal.h')
-rw-r--r--include/asm-i386/signal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-i386/signal.h b/include/asm-i386/signal.h
index 026fd231488d..c3e8adec5918 100644
--- a/include/asm-i386/signal.h
+++ b/include/asm-i386/signal.h
@@ -2,7 +2,6 @@
2#define _ASMi386_SIGNAL_H 2#define _ASMi386_SIGNAL_H
3 3
4#include <linux/types.h> 4#include <linux/types.h>
5#include <linux/linkage.h>
6#include <linux/time.h> 5#include <linux/time.h>
7#include <linux/compiler.h> 6#include <linux/compiler.h>
8 7
@@ -10,6 +9,9 @@
10struct siginfo; 9struct siginfo;
11 10
12#ifdef __KERNEL__ 11#ifdef __KERNEL__
12
13#include <linux/linkage.h>
14
13/* Most things should be clean enough to redefine this at will, if care 15/* Most things should be clean enough to redefine this at will, if care
14 is taken to make libc match. */ 16 is taken to make libc match. */
15 17
@@ -77,7 +79,6 @@ typedef unsigned long sigset_t;
77 * SA_FLAGS values: 79 * SA_FLAGS values:
78 * 80 *
79 * SA_ONSTACK indicates that a registered stack_t will be used. 81 * SA_ONSTACK indicates that a registered stack_t will be used.
80 * SA_INTERRUPT is a no-op, but left due to historical reasons. Use the
81 * SA_RESTART flag to get restarting signals (which were the default long ago) 82 * SA_RESTART flag to get restarting signals (which were the default long ago)
82 * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop. 83 * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop.
83 * SA_RESETHAND clears the handler when the signal is delivered. 84 * SA_RESETHAND clears the handler when the signal is delivered.
@@ -97,7 +98,6 @@ typedef unsigned long sigset_t;
97 98
98#define SA_NOMASK SA_NODEFER 99#define SA_NOMASK SA_NODEFER
99#define SA_ONESHOT SA_RESETHAND 100#define SA_ONESHOT SA_RESETHAND
100#define SA_INTERRUPT 0x20000000 /* dummy -- ignored */
101 101
102#define SA_RESTORER 0x04000000 102#define SA_RESTORER 0x04000000
103 103