Update.
[glibc.git] / sysdeps / unix / sysv / linux / sigaction.c
bloba7b3e07daefa9163d3883f856bd38f35b54b7391
1 /* Copyright (C) 1997 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
19 #include <signal.h>
21 /* The difference here is that the sigaction structure used in the
22 kernel is not the same as we use in the libc. Therefore we must
23 translate it here. */
24 #include <kernel_sigaction.h>
26 extern int __syscall_sigaction (int, const struct kernel_sigaction *,
27 struct kernel_sigaction *);
29 /* If ACT is not NULL, change the action for SIG to *ACT.
30 If OACT is not NULL, put the old action for SIG in *OACT. */
31 int
32 __sigaction (sig, act, oact)
33 int sig;
34 const struct sigaction *act;
35 struct sigaction *oact;
37 struct kernel_sigaction k_sigact, k_osigact;
38 int error;
40 if (act)
42 k_sigact.sa_handler = act->sa_handler;
43 k_sigact.sa_mask = act->sa_mask.__val[0];
44 k_sigact.sa_flags = act->sa_flags;
45 #ifdef HAVE_SA_RESTORER
46 k_sigact.sa_restorer = act->sa_restorer;
47 #endif
49 error = __syscall_sigaction (sig, act ? &k_sigact : 0,
50 oact ? &k_osigact : 0);
51 if (oact && error >= 0)
53 oact->sa_handler = k_osigact.sa_handler;
54 oact->sa_mask.__val[0] = k_osigact.sa_mask;
55 oact->sa_flags = k_osigact.sa_flags;
56 #ifdef HAVE_SA_RESTORER
57 oact->sa_restorer = k_osigact.sa_restorer;
58 #endif
60 return error;
63 weak_alias (__sigaction, sigaction)