OSDN Git Service

Add sigaction for mips
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / mips / sigaction.c
1 /* Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3
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.
8
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.
13
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.  
18
19    Totally hacked up for uClibc by Erik Andersen <andersen@codepoet.org>
20    */
21
22 #include <errno.h>
23 #include <signal.h>
24 #include <string.h>
25 #include <sys/syscall.h>
26 #include <bits/kernel_sigaction.h>
27
28 #define SA_RESTORER     0x04000000
29
30
31 #if defined __NR_rt_sigaction
32
33 /* If ACT is not NULL, change the action for SIG to *ACT.
34    If OACT is not NULL, put the old action for SIG in *OACT.  */
35 int __libc_sigaction (int sig, const struct sigaction *act, struct sigaction *oact)
36 {
37     int result;
38     struct kernel_sigaction kact, koact;
39
40 #ifdef SIGCANCEL
41     if (sig == SIGCANCEL) {
42         __set_errno (EINVAL);
43         return -1;
44     }
45 #endif
46
47     if (act) {
48         kact.k_sa_handler = act->sa_handler;
49         memcpy (&kact.sa_mask, &act->sa_mask, sizeof (kact.sa_mask));
50         kact.sa_flags = act->sa_flags;
51
52         kact.sa_flags = act->sa_flags | SA_RESTORER;
53 #ifdef HAVE_SA_RESTORER
54         kact.sa_restorer = act->sa_restorer;
55 #endif
56     }
57
58     /* XXX The size argument hopefully will have to be changed to the
59        real size of the user-level sigset_t.  */
60     result = __syscall_rt_sigaction(sig, act ? __ptrvalue (&kact) : NULL,
61             oact ? __ptrvalue (&koact) : NULL, _NSIG / 8);
62
63     if (oact && result >= 0) {
64         oact->sa_handler = koact.k_sa_handler;
65         memcpy (&oact->sa_mask, &koact.sa_mask, sizeof (oact->sa_mask));
66         oact->sa_flags = koact.sa_flags;
67 #ifdef HAVE_SA_RESTORER
68         oact->sa_restorer = koact.sa_restorer;
69 #endif
70     }
71     return result;
72 }
73
74
75 #else
76 #warning "Yes there is a warning here.  Don't worry about it."
77 static void restore (void) asm ("__restore");
78
79 /* If ACT is not NULL, change the action for SIG to *ACT.
80    If OACT is not NULL, put the old action for SIG in *OACT.  */
81 int __libc_sigaction (int sig, const struct sigaction *act, struct sigaction *oact)
82 {
83     int result;
84     struct old_kernel_sigaction kact, koact;
85
86 #ifdef SIGCANCEL
87     if (sig == SIGCANCEL) {
88         __set_errno (EINVAL);
89         return -1;
90     }
91 #endif
92
93     if (act) {
94         kact.k_sa_handler = act->sa_handler;
95         kact.sa_mask = act->sa_mask.__val[0];
96         kact.sa_flags = act->sa_flags | SA_RESTORER;
97 #ifdef HAVE_SA_RESTORER
98         kact.sa_restorer = act->sa_restorer;
99 #endif
100     }
101
102     result = __syscall_sigaction(sig, act ? __ptrvalue (&kact) : NULL,
103             oact ? __ptrvalue (&koact) : NULL);
104
105     if (result < 0) {
106         __set_errno(-result);
107         return -1;
108     }
109
110     if (oact) {
111         oact->sa_handler = koact.k_sa_handler;
112         oact->sa_mask.__val[0] = koact.sa_mask;
113         oact->sa_flags = koact.sa_flags;
114 #ifdef HAVE_SA_RESTORER
115         oact->sa_restorer = koact.sa_restorer;
116 #endif
117     }
118     return result;
119 }
120
121 #endif
122 weak_alias (__libc_sigaction, sigaction)
123