From 7d154f91ff73865e2ab3ee30b2c28570df710592 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Sun, 14 Mar 2004 17:58:11 +0000 Subject: [PATCH] arch_setup_signal_frame() can now fail. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6970 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/kernel/arch/thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/private/kernel/arch/thread.h b/headers/private/kernel/arch/thread.h index ada448c425..6d8790b5e5 100644 --- a/headers/private/kernel/arch/thread.h +++ b/headers/private/kernel/arch/thread.h @@ -24,7 +24,7 @@ struct thread *arch_thread_get_current_thread(void); void arch_thread_set_current_thread(struct thread *t); #endif -void arch_setup_signal_frame(struct thread *t, struct sigaction *sa, int sig, int sig_mask); +status_t arch_setup_signal_frame(struct thread *t, struct sigaction *sa, int sig, int sig_mask); int64 arch_restore_signal_frame(void); void arch_check_syscall_restart(struct thread *t);