Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/sigpipe @ 16364:89227b989588
fatal-signal: use C prototypes (with explicit void).
* lib/fatal-signal.c (uninstall_handlers, install_handlers)
(init_fatal_signal_set, block_fatal_signals): Fix signatures.
author | Akim Demaille <demaille@gostai.com> |
---|---|
date | Wed, 08 Feb 2012 10:36:20 +0100 |
parents | 51a803e5cfdc |
children |
rev | line source |
---|---|
10480 | 1 Description: |
2 Emulation of POSIX compatible SIGPIPE behaviour. | |
3 | |
13074
dc9c0e0be44e
Add a remark about certain modules.
Bruno Haible <bruno@clisp.org>
parents:
10480
diff
changeset
|
4 Comment: |
dc9c0e0be44e
Add a remark about certain modules.
Bruno Haible <bruno@clisp.org>
parents:
10480
diff
changeset
|
5 This module should not be used as a dependency from a test module, |
dc9c0e0be44e
Add a remark about certain modules.
Bruno Haible <bruno@clisp.org>
parents:
10480
diff
changeset
|
6 otherwise when this module occurs as a tests-related module, it will |
dc9c0e0be44e
Add a remark about certain modules.
Bruno Haible <bruno@clisp.org>
parents:
10480
diff
changeset
|
7 have side effects on the compilation of the main modules in lib/. |
dc9c0e0be44e
Add a remark about certain modules.
Bruno Haible <bruno@clisp.org>
parents:
10480
diff
changeset
|
8 |
10480 | 9 Files: |
10 m4/sigpipe.m4 | |
14402
57da5afce380
stdio: simplify by moving files to printf-posix, sigpipe
Paul Eggert <eggert@cs.ucla.edu>
parents:
14002
diff
changeset
|
11 lib/stdio-write.c |
57da5afce380
stdio: simplify by moving files to printf-posix, sigpipe
Paul Eggert <eggert@cs.ucla.edu>
parents:
14002
diff
changeset
|
12 m4/asm-underscore.m4 |
10480 | 13 |
14 Depends-on: | |
15752
b86e9061a6d0
New module 'msvc-nothrow'. Makes _get_osfhandle safe on MSVC 9.
Bruno Haible <bruno@clisp.org>
parents:
14402
diff
changeset
|
15 msvc-nothrow |
14402
57da5afce380
stdio: simplify by moving files to printf-posix, sigpipe
Paul Eggert <eggert@cs.ucla.edu>
parents:
14002
diff
changeset
|
16 raise |
15758
51a803e5cfdc
signal-h: Rename from signal.
Bruno Haible <bruno@clisp.org>
parents:
15752
diff
changeset
|
17 signal-h |
10480 | 18 sigprocmask |
19 stdio | |
20 unistd | |
21 | |
22 configure.ac: | |
23 gl_SIGNAL_SIGPIPE | |
24 dnl Define the C macro GNULIB_SIGPIPE to 1. | |
25 gl_MODULE_INDICATOR([sigpipe]) | |
26 dnl Define the substituted variable GNULIB_SIGNAL_H_SIGPIPE to 1. | |
27 AC_REQUIRE([gl_SIGNAL_H_DEFAULTS]) | |
28 GNULIB_SIGNAL_H_SIGPIPE=1 | |
29 dnl Define the substituted variable GNULIB_STDIO_H_SIGPIPE to 1. | |
30 AC_REQUIRE([gl_STDIO_H_DEFAULTS]) | |
14402
57da5afce380
stdio: simplify by moving files to printf-posix, sigpipe
Paul Eggert <eggert@cs.ucla.edu>
parents:
14002
diff
changeset
|
31 AC_REQUIRE([gl_ASM_SYMBOL_PREFIX]) |
10480 | 32 GNULIB_STDIO_H_SIGPIPE=1 |
33 dnl Define the substituted variable GNULIB_UNISTD_H_SIGPIPE to 1. | |
34 AC_REQUIRE([gl_UNISTD_H_DEFAULTS]) | |
35 GNULIB_UNISTD_H_SIGPIPE=1 | |
36 | |
37 Makefile.am: | |
38 | |
39 Include: | |
40 <signal.h> | |
41 | |
42 License: | |
14002
b9abed08d82e
sigpipe: relax to LGPLv2+, since it did not have any LGPLv3+ parts
Eric Blake <eblake@redhat.com>
parents:
13074
diff
changeset
|
43 LGPLv2+ |
10480 | 44 |
45 Maintainer: | |
46 Bruno Haible | |
47 |