diff options
author | Tony Luck <tony.luck@intel.com> | 2005-05-17 18:53:14 -0400 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2005-05-17 18:53:14 -0400 |
commit | 325a479c4c110db278ef3361460a48c4093252cc (patch) | |
tree | bcfbf4d0647d9442045639a5c19da59d55190e81 /include/asm-sparc64 | |
parent | ebcc80c1b6629a445f7471cc1ddb48faf8a84e70 (diff) | |
parent | 7f9eaedf894dbaa08c157832e9a6c9c03ffed1ed (diff) |
Merge with temp tree to get David's gdb inferior calls patch
Diffstat (limited to 'include/asm-sparc64')
-rw-r--r-- | include/asm-sparc64/bug.h | 3 | ||||
-rw-r--r-- | include/asm-sparc64/errno.h | 4 | ||||
-rw-r--r-- | include/asm-sparc64/siginfo.h | 2 | ||||
-rw-r--r-- | include/asm-sparc64/signal.h | 8 |
4 files changed, 7 insertions, 10 deletions
diff --git a/include/asm-sparc64/bug.h b/include/asm-sparc64/bug.h index 25c5b1dfe378..516bb27f3fc4 100644 --- a/include/asm-sparc64/bug.h +++ b/include/asm-sparc64/bug.h | |||
@@ -1,6 +1,7 @@ | |||
1 | #ifndef _SPARC64_BUG_H | 1 | #ifndef _SPARC64_BUG_H |
2 | #define _SPARC64_BUG_H | 2 | #define _SPARC64_BUG_H |
3 | 3 | ||
4 | #ifdef CONFIG_BUG | ||
4 | #include <linux/compiler.h> | 5 | #include <linux/compiler.h> |
5 | 6 | ||
6 | #ifdef CONFIG_DEBUG_BUGVERBOSE | 7 | #ifdef CONFIG_DEBUG_BUGVERBOSE |
@@ -14,6 +15,8 @@ extern void do_BUG(const char *file, int line); | |||
14 | #endif | 15 | #endif |
15 | 16 | ||
16 | #define HAVE_ARCH_BUG | 17 | #define HAVE_ARCH_BUG |
18 | #endif | ||
19 | |||
17 | #include <asm-generic/bug.h> | 20 | #include <asm-generic/bug.h> |
18 | 21 | ||
19 | #endif | 22 | #endif |
diff --git a/include/asm-sparc64/errno.h b/include/asm-sparc64/errno.h index cc98a73b55a7..ea3509ee1b0b 100644 --- a/include/asm-sparc64/errno.h +++ b/include/asm-sparc64/errno.h | |||
@@ -107,4 +107,8 @@ | |||
107 | #define EKEYREVOKED 130 /* Key has been revoked */ | 107 | #define EKEYREVOKED 130 /* Key has been revoked */ |
108 | #define EKEYREJECTED 131 /* Key was rejected by service */ | 108 | #define EKEYREJECTED 131 /* Key was rejected by service */ |
109 | 109 | ||
110 | /* for robust mutexes */ | ||
111 | #define EOWNERDEAD 132 /* Owner died */ | ||
112 | #define ENOTRECOVERABLE 133 /* State not recoverable */ | ||
113 | |||
110 | #endif /* !(_SPARC64_ERRNO_H) */ | 114 | #endif /* !(_SPARC64_ERRNO_H) */ |
diff --git a/include/asm-sparc64/siginfo.h b/include/asm-sparc64/siginfo.h index 7160449e7cab..df17e47abc1c 100644 --- a/include/asm-sparc64/siginfo.h +++ b/include/asm-sparc64/siginfo.h | |||
@@ -3,8 +3,6 @@ | |||
3 | 3 | ||
4 | #define SI_PAD_SIZE32 ((SI_MAX_SIZE/sizeof(int)) - 3) | 4 | #define SI_PAD_SIZE32 ((SI_MAX_SIZE/sizeof(int)) - 3) |
5 | 5 | ||
6 | #define SIGEV_PAD_SIZE ((SIGEV_MAX_SIZE/sizeof(int)) - 4) | ||
7 | |||
8 | #define __ARCH_SI_PREAMBLE_SIZE (4 * sizeof(int)) | 6 | #define __ARCH_SI_PREAMBLE_SIZE (4 * sizeof(int)) |
9 | #define __ARCH_SI_TRAPNO | 7 | #define __ARCH_SI_TRAPNO |
10 | #define __ARCH_SI_BAND_T int | 8 | #define __ARCH_SI_BAND_T int |
diff --git a/include/asm-sparc64/signal.h b/include/asm-sparc64/signal.h index 6428e366c38c..466d021d7038 100644 --- a/include/asm-sparc64/signal.h +++ b/include/asm-sparc64/signal.h | |||
@@ -145,7 +145,6 @@ struct sigstack { | |||
145 | #define SA_ONESHOT _SV_RESET | 145 | #define SA_ONESHOT _SV_RESET |
146 | #define SA_INTERRUPT 0x10u | 146 | #define SA_INTERRUPT 0x10u |
147 | #define SA_NOMASK 0x20u | 147 | #define SA_NOMASK 0x20u |
148 | #define SA_SHIRQ 0x40u | ||
149 | #define SA_NOCLDWAIT 0x100u | 148 | #define SA_NOCLDWAIT 0x100u |
150 | #define SA_SIGINFO 0x200u | 149 | #define SA_SIGINFO 0x200u |
151 | 150 | ||
@@ -165,11 +164,6 @@ struct sigstack { | |||
165 | 164 | ||
166 | #ifdef __KERNEL__ | 165 | #ifdef __KERNEL__ |
167 | /* | 166 | /* |
168 | * These values of sa_flags are used only by the kernel as part of the | ||
169 | * irq handling routines. | ||
170 | * | ||
171 | * SA_INTERRUPT is also used by the irq handling routines. | ||
172 | * | ||
173 | * DJHR | 167 | * DJHR |
174 | * SA_STATIC_ALLOC is used for the SPARC system to indicate that this | 168 | * SA_STATIC_ALLOC is used for the SPARC system to indicate that this |
175 | * interrupt handler's irq structure should be statically allocated | 169 | * interrupt handler's irq structure should be statically allocated |
@@ -180,8 +174,6 @@ struct sigstack { | |||
180 | * statically allocated data.. which is NOT GOOD. | 174 | * statically allocated data.. which is NOT GOOD. |
181 | * | 175 | * |
182 | */ | 176 | */ |
183 | #define SA_PROBE SA_ONESHOT | ||
184 | #define SA_SAMPLE_RANDOM SA_RESTART | ||
185 | #define SA_STATIC_ALLOC 0x80 | 177 | #define SA_STATIC_ALLOC 0x80 |
186 | #endif | 178 | #endif |
187 | 179 | ||