about summary refs log tree commit diff
path: root/hurd
diff options
context:
space:
mode:
authorSergey Bugaev <bugaevc@gmail.com>2023-03-19 18:09:52 +0300
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-04-03 00:58:00 +0200
commit05024b52a45fde064fe42288cee19d1756f6d01d (patch)
tree431fdbc52e074f6a101442e5ab4e7a1fefeae119 /hurd
parent543f0cfc9a82db19cc7e52c27dbdbeccd4fe68ea (diff)
downloadglibc-05024b52a45fde064fe42288cee19d1756f6d01d.tar.gz
glibc-05024b52a45fde064fe42288cee19d1756f6d01d.tar.xz
glibc-05024b52a45fde064fe42288cee19d1756f6d01d.zip
hurd: Fix _hurd_setup_sighandler () signature
Signed-off-by: Sergey Bugaev <bugaevc@gmail.com>
Message-Id: <20230319151017.531737-10-bugaevc@gmail.com>
Diffstat (limited to 'hurd')
-rw-r--r--hurd/trampoline.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/hurd/trampoline.c b/hurd/trampoline.c
index a0639a2084..5bd8dec919 100644
--- a/hurd/trampoline.c
+++ b/hurd/trampoline.c
@@ -26,11 +26,11 @@
    that structure.  */
 
 struct sigcontext *
-_hurd_setup_sighandler (int flags,
-			__sighandler_t handler,
-			stack_t *sigaltstack,
-			int signo, int sigcode,
-			void *state)
+_hurd_setup_sighandler (struct hurd_sigstate *ss, const struct sigaction *action,
+                        __sighandler_t handler,
+                        int signo, struct hurd_signal_detail *detail,
+                        volatile int rpc_wait,
+                        struct machine_thread_all_state *state)
 {
 #error "Need to write sysdeps/mach/hurd/MACHINE/trampoline.c"
 }