mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-14 14:01:48 +03:00
* lib/sig-handler.c: New file. * lib/sig-handler.h (SIG_HANDLER_INLINE): New macro. Replace all uses of 'static inline' with it. Use _GL_INLINE_HEADER_BEGIN, _GL_INLINE_HEADER_END. * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): Do not require AC_C_INLINE. * modules/sigaction (Files, lib_SOURCES): Add lib/sig-handler.c. (Depends-on): Add extern-inline.
34 lines
460 B
Plaintext
34 lines
460 B
Plaintext
Description:
|
|
POSIX compatible signal handlers.
|
|
|
|
Files:
|
|
lib/sigaction.c
|
|
lib/sig-handler.h
|
|
lib/sig-handler.c
|
|
m4/sigaction.m4
|
|
|
|
Depends-on:
|
|
extern-inline
|
|
signal-h
|
|
sigprocmask [test $HAVE_SIGACTION = 0]
|
|
|
|
configure.ac:
|
|
gl_SIGACTION
|
|
if test $HAVE_SIGACTION = 0; then
|
|
AC_LIBOBJ([sigaction])
|
|
gl_PREREQ_SIGACTION
|
|
fi
|
|
gl_SIGNAL_MODULE_INDICATOR([sigaction])
|
|
|
|
Makefile.am:
|
|
lib_SOURCES += sig-handler.c
|
|
|
|
Include:
|
|
<signal.h>
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
Eric Blake
|