OSDN Git Service

hidden_def/hidden_proto: convert all users (I hope) termios split, add some missing...
[uclinux-h8/uClibc.git] / libc / signal / sigintr.c
1 /* Copyright (C) 1992, 1994, 1996, 2002 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 Lesser General Public
6    License as published by the Free Software Foundation; either
7    version 2.1 of the 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    Lesser General Public License for more details.
13
14    You should have received a copy of the GNU Lesser General Public
15    License along with the GNU C Library; if not, write to the Free
16    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17    02111-1307 USA.  */
18
19 #include <stddef.h>
20 #include <signal.h>
21 #include <errno.h>
22
23 libc_hidden_proto(sigaction)
24
25 /* If INTERRUPT is nonzero, make signal SIG interrupt system calls
26    (causing them to fail with EINTR); if INTERRUPT is zero, make system
27    calls be restarted after signal SIG.  */
28 int
29 siginterrupt (sig, interrupt)
30      int sig;
31      int interrupt;
32 {
33 #ifdef  SA_RESTART
34   extern sigset_t _sigintr attribute_hidden;    /* Defined in signal.c.  */
35   struct sigaction action;
36
37   if (sigaction (sig, (struct sigaction *) NULL, &action) < 0)
38     return -1;
39
40   if (interrupt)
41     {
42       __sigaddset (&_sigintr, sig);
43       action.sa_flags &= ~SA_RESTART;
44     }
45   else
46     {
47       __sigdelset (&_sigintr, sig);
48       action.sa_flags |= SA_RESTART;
49     }
50
51   if (sigaction (sig, &action, (struct sigaction *) NULL) < 0)
52     return -1;
53
54   return 0;
55 #else
56   __set_errno (ENOSYS);
57   return -1;
58 #endif
59 }