]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c
Update.
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / sparc / sparc64 / sigaction.c
1 /* POSIX.1 sigaction call for Linux/SPARC64.
2 Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Miguel de Icaza (miguel@nuclecu.unam.mx) and
5 Jakub Jelinek (jj@ultra.linux.cz).
6
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Library General Public License as
9 published by the Free Software Foundation; either version 2 of the
10 License, or (at your option) any later version.
11
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Library General Public License for more details.
16
17 You should have received a copy of the GNU Library General Public
18 License along with the GNU C Library; see the file COPYING.LIB. If not,
19 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22 #include <string.h>
23 #include <syscall.h>
24 #include <sysdep.h>
25 #include <sys/signal.h>
26 #include <errno.h>
27 #include <kernel_sigaction.h>
28
29 /* SPARC 64bit userland requires a kernel that has rt signals anyway. */
30
31 static void __rt_sigreturn_stub (void);
32
33 int
34 __sigaction (int sig, __const struct sigaction *act, struct sigaction *oact)
35 {
36 int ret;
37 struct kernel_sigaction kact, koact;
38 unsigned long stub = ((unsigned long) &__rt_sigreturn_stub) - 8;
39
40 if (act)
41 {
42 kact.k_sa_handler = act->sa_handler;
43 memcpy (&kact.sa_mask, &act->sa_mask, sizeof (sigset_t));
44 kact.sa_flags = act->sa_flags;
45 kact.sa_restorer = NULL;
46 }
47
48 /* XXX The size argument hopefully will have to be changed to the
49 real size of the user-level sigset_t. */
50 ret = INLINE_SYSCALL (rt_sigaction, 5, sig, act ? &kact : 0,
51 oact ? &koact : 0, stub, _NSIG / 8);
52
53 if (oact && ret >= 0)
54 {
55 oact->sa_handler = koact.k_sa_handler;
56 memcpy (&oact->sa_mask, &koact.sa_mask, sizeof (sigset_t));
57 oact->sa_flags = koact.sa_flags;
58 oact->sa_restorer = koact.sa_restorer;
59 }
60
61 return ret;
62 }
63
64 weak_alias (__sigaction, sigaction);
65
66 static void
67 __rt_sigreturn_stub (void)
68 {
69 __asm__ ("mov %0, %%g1\n\t"
70 "ta 0x6d\n\t"
71 : /* no outputs */
72 : "i" (__NR_rt_sigreturn));
73 }