diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-07-11 16:45:51 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 14:31:41 -0400 |
commit | 129bc8f78b468df6824dd1584829f10aa3a69c27 (patch) | |
tree | 714e9026691a406ffb76110486f21ca3107df938 /arch/mips/kernel/process.c | |
parent | b490ff42709546d5cf6b631c1a84a5f4fcb020e4 (diff) |
Setup_frame is now returning a success value.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/process.c')
-rw-r--r-- | arch/mips/kernel/process.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/mips/kernel/process.c b/arch/mips/kernel/process.c index 98432097a86a..4fe3d5715c41 100644 --- a/arch/mips/kernel/process.c +++ b/arch/mips/kernel/process.c | |||
@@ -62,9 +62,9 @@ extern int do_signal32(sigset_t *oldset, struct pt_regs *regs); | |||
62 | /* | 62 | /* |
63 | * Native o32 and N64 ABI without DSP ASE | 63 | * Native o32 and N64 ABI without DSP ASE |
64 | */ | 64 | */ |
65 | extern void setup_frame(struct k_sigaction * ka, struct pt_regs *regs, | 65 | extern int setup_frame(struct k_sigaction * ka, struct pt_regs *regs, |
66 | int signr, sigset_t *set); | 66 | int signr, sigset_t *set); |
67 | extern void setup_rt_frame(struct k_sigaction * ka, struct pt_regs *regs, | 67 | extern int setup_rt_frame(struct k_sigaction * ka, struct pt_regs *regs, |
68 | int signr, sigset_t *set, siginfo_t *info); | 68 | int signr, sigset_t *set, siginfo_t *info); |
69 | 69 | ||
70 | struct mips_abi mips_abi = { | 70 | struct mips_abi mips_abi = { |
@@ -79,9 +79,9 @@ struct mips_abi mips_abi = { | |||
79 | /* | 79 | /* |
80 | * o32 compatibility on 64-bit kernels, without DSP ASE | 80 | * o32 compatibility on 64-bit kernels, without DSP ASE |
81 | */ | 81 | */ |
82 | extern void setup_frame_32(struct k_sigaction * ka, struct pt_regs *regs, | 82 | extern int setup_frame_32(struct k_sigaction * ka, struct pt_regs *regs, |
83 | int signr, sigset_t *set); | 83 | int signr, sigset_t *set); |
84 | extern void setup_rt_frame_32(struct k_sigaction * ka, struct pt_regs *regs, | 84 | extern int setup_rt_frame_32(struct k_sigaction * ka, struct pt_regs *regs, |
85 | int signr, sigset_t *set, siginfo_t *info); | 85 | int signr, sigset_t *set, siginfo_t *info); |
86 | 86 | ||
87 | struct mips_abi mips_abi_32 = { | 87 | struct mips_abi mips_abi_32 = { |
@@ -95,7 +95,7 @@ struct mips_abi mips_abi_32 = { | |||
95 | /* | 95 | /* |
96 | * N32 on 64-bit kernels, without DSP ASE | 96 | * N32 on 64-bit kernels, without DSP ASE |
97 | */ | 97 | */ |
98 | extern void setup_rt_frame_n32(struct k_sigaction * ka, struct pt_regs *regs, | 98 | extern int setup_rt_frame_n32(struct k_sigaction * ka, struct pt_regs *regs, |
99 | int signr, sigset_t *set, siginfo_t *info); | 99 | int signr, sigset_t *set, siginfo_t *info); |
100 | 100 | ||
101 | struct mips_abi mips_abi_n32 = { | 101 | struct mips_abi mips_abi_n32 = { |