2.9
[glibc/nacl-glibc.git] / sysdeps / unix / sysv / linux / ia64 / sigaction.c
blobfdbc93f0ed1bf64b32ce9da55783e0ccc3df2beb
1 /* Copyright (C) 1997-2000,2002,2003,2005 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Linux/IA64 specific sigaction
4 Written by Jes Sorensen, <Jes.Sorensen@cern.ch>, April 1999.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
21 /* Linux/ia64 only has rt signals, thus we do not even want to try falling
22 back to the old style signals as the default Linux handler does. */
24 #include <errno.h>
25 #include <signal.h>
26 #include <string.h>
28 #include <sysdep.h>
29 #include <sys/syscall.h>
30 #include <bp-checks.h>
32 /* The variable is shared between all wrappers around signal handling
33 functions which have RT equivalents. This is the definition. */
36 /* If ACT is not NULL, change the action for SIG to *ACT.
37 If OACT is not NULL, put the old action for SIG in *OACT. */
38 int
39 __libc_sigaction (sig, act, oact)
40 int sig;
41 const struct sigaction *act;
42 struct sigaction *oact;
44 /* XXX The size argument hopefully will have to be changed to the
45 real size of the user-level sigset_t. */
46 return INLINE_SYSCALL (rt_sigaction, 4, sig,
47 CHECK_1_NULL_OK (act), CHECK_1_NULL_OK (oact), _NSIG / 8);
49 libc_hidden_def (__libc_sigaction)
51 #ifdef WRAPPER_INCLUDE
52 # include WRAPPER_INCLUDE
53 #endif
55 #ifndef LIBC_SIGACTION
56 weak_alias (__libc_sigaction, __sigaction)
57 libc_hidden_def (__sigaction)
58 weak_alias (__libc_sigaction, sigaction)
59 #endif