annotate lib/raise.c @ 16201:8250f2777afc

maint: update all copyright year number ranges Run "make update-copyright".
author Jim Meyering <meyering@redhat.com>
date Sun, 01 Jan 2012 10:04:58 +0100
parents 13eba3ca057f
children d7a44f0f7a15
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5141
87fa4bfd0779 Merge from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff changeset
1 /* Provide a non-threads replacement for the POSIX raise function.
7302
8a1a9361108c * _fpending.c: Include <config.h> unconditionally, since we no
Paul Eggert <eggert@cs.ucla.edu>
parents: 6275
diff changeset
2
16201
8250f2777afc maint: update all copyright year number ranges
Jim Meyering <meyering@redhat.com>
parents: 15794
diff changeset
3 Copyright (C) 2002-2003, 2005-2006, 2009-2012 Free Software Foundation, Inc.
5141
87fa4bfd0779 Merge from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff changeset
4
9309
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 7302
diff changeset
5 This program is free software: you can redistribute it and/or modify
5141
87fa4bfd0779 Merge from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff changeset
6 it under the terms of the GNU General Public License as published by
9309
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 7302
diff changeset
7 the Free Software Foundation; either version 3 of the License, or
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 7302
diff changeset
8 (at your option) any later version.
5141
87fa4bfd0779 Merge from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff changeset
9
87fa4bfd0779 Merge from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff changeset
10 This program is distributed in the hope that it will be useful,
87fa4bfd0779 Merge from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff changeset
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
87fa4bfd0779 Merge from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff changeset
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
87fa4bfd0779 Merge from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff changeset
13 GNU General Public License for more details.
87fa4bfd0779 Merge from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff changeset
14
87fa4bfd0779 Merge from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff changeset
15 You should have received a copy of the GNU General Public License
9309
bbbbbf4cd1c5 Change copyright notice from GPLv2+ to GPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 7302
diff changeset
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
5141
87fa4bfd0779 Merge from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff changeset
17
15755
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
18 /* written by Jim Meyering and Bruno Haible */
5141
87fa4bfd0779 Merge from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff changeset
19
7302
8a1a9361108c * _fpending.c: Include <config.h> unconditionally, since we no
Paul Eggert <eggert@cs.ucla.edu>
parents: 6275
diff changeset
20 #include <config.h>
5141
87fa4bfd0779 Merge from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff changeset
21
15755
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
22 /* Specification. */
5141
87fa4bfd0779 Merge from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff changeset
23 #include <signal.h>
15755
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
24
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
25 #if HAVE_RAISE
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
26 /* Native Windows platform. */
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
27
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
28 # include <errno.h>
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
29
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
30 # include "msvc-inval.h"
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
31
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
32 # undef raise
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
33
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
34 # if HAVE_MSVC_INVALID_PARAMETER_HANDLER
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
35 static inline int
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
36 raise_nothrow (int sig)
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
37 {
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
38 int result;
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
39
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
40 TRY_MSVC_INVAL
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
41 {
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
42 result = raise (sig);
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
43 }
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
44 CATCH_MSVC_INVAL
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
45 {
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
46 result = -1;
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
47 errno = EINVAL;
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
48 }
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
49 DONE_MSVC_INVAL;
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
50
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
51 return result;
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
52 }
15794
13eba3ca057f raise: Fix double declaration with modules 'sigprocmask' and 'sigpipe'.
Bruno Haible <bruno@clisp.org>
parents: 15755
diff changeset
53 # else
13eba3ca057f raise: Fix double declaration with modules 'sigprocmask' and 'sigpipe'.
Bruno Haible <bruno@clisp.org>
parents: 15755
diff changeset
54 # define raise_nothrow raise
15755
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
55 # endif
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
56
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
57 #else
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
58 /* An old Unix platform. */
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
59
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
60 # include <unistd.h>
5141
87fa4bfd0779 Merge from coreutils.
Paul Eggert <eggert@cs.ucla.edu>
parents:
diff changeset
61
15794
13eba3ca057f raise: Fix double declaration with modules 'sigprocmask' and 'sigpipe'.
Bruno Haible <bruno@clisp.org>
parents: 15755
diff changeset
62 # define rpl_raise raise
15755
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
63
68596f3bad3e raise: Support for MSVC.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
64 #endif
15794
13eba3ca057f raise: Fix double declaration with modules 'sigprocmask' and 'sigpipe'.
Bruno Haible <bruno@clisp.org>
parents: 15755
diff changeset
65
13eba3ca057f raise: Fix double declaration with modules 'sigprocmask' and 'sigpipe'.
Bruno Haible <bruno@clisp.org>
parents: 15755
diff changeset
66 int
13eba3ca057f raise: Fix double declaration with modules 'sigprocmask' and 'sigpipe'.
Bruno Haible <bruno@clisp.org>
parents: 15755
diff changeset
67 rpl_raise (int sig)
13eba3ca057f raise: Fix double declaration with modules 'sigprocmask' and 'sigpipe'.
Bruno Haible <bruno@clisp.org>
parents: 15755
diff changeset
68 {
13eba3ca057f raise: Fix double declaration with modules 'sigprocmask' and 'sigpipe'.
Bruno Haible <bruno@clisp.org>
parents: 15755
diff changeset
69 #if GNULIB_defined_signal_blocking && GNULIB_defined_SIGPIPE
13eba3ca057f raise: Fix double declaration with modules 'sigprocmask' and 'sigpipe'.
Bruno Haible <bruno@clisp.org>
parents: 15755
diff changeset
70 if (sig == SIGPIPE)
13eba3ca057f raise: Fix double declaration with modules 'sigprocmask' and 'sigpipe'.
Bruno Haible <bruno@clisp.org>
parents: 15755
diff changeset
71 return _gl_raise_SIGPIPE ();
13eba3ca057f raise: Fix double declaration with modules 'sigprocmask' and 'sigpipe'.
Bruno Haible <bruno@clisp.org>
parents: 15755
diff changeset
72 #endif
13eba3ca057f raise: Fix double declaration with modules 'sigprocmask' and 'sigpipe'.
Bruno Haible <bruno@clisp.org>
parents: 15755
diff changeset
73
13eba3ca057f raise: Fix double declaration with modules 'sigprocmask' and 'sigpipe'.
Bruno Haible <bruno@clisp.org>
parents: 15755
diff changeset
74 #if HAVE_RAISE
13eba3ca057f raise: Fix double declaration with modules 'sigprocmask' and 'sigpipe'.
Bruno Haible <bruno@clisp.org>
parents: 15755
diff changeset
75 return raise_nothrow (sig);
13eba3ca057f raise: Fix double declaration with modules 'sigprocmask' and 'sigpipe'.
Bruno Haible <bruno@clisp.org>
parents: 15755
diff changeset
76 #else
13eba3ca057f raise: Fix double declaration with modules 'sigprocmask' and 'sigpipe'.
Bruno Haible <bruno@clisp.org>
parents: 15755
diff changeset
77 return kill (getpid (), sig);
13eba3ca057f raise: Fix double declaration with modules 'sigprocmask' and 'sigpipe'.
Bruno Haible <bruno@clisp.org>
parents: 15755
diff changeset
78 #endif
13eba3ca057f raise: Fix double declaration with modules 'sigprocmask' and 'sigpipe'.
Bruno Haible <bruno@clisp.org>
parents: 15755
diff changeset
79 }