blob: a308ea45d7738cd22300ae0ce2551d6ab4a07ad3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
Description:
Send a signal to the executing process.
Files:
lib/raise.c
m4/raise.m4
Depends-on:
signal-h
msvc-inval [test $HAVE_RAISE = 0 || test $REPLACE_RAISE = 1]
configure.ac:
gl_FUNC_RAISE
gl_CONDITIONAL([GL_COND_OBJ_RAISE],
[test $HAVE_RAISE = 0 || test $REPLACE_RAISE = 1])
AM_COND_IF([GL_COND_OBJ_RAISE], [
gl_PREREQ_RAISE
])
gl_SIGNAL_MODULE_INDICATOR([raise])
Makefile.am:
if GL_COND_OBJ_RAISE
lib_SOURCES += raise.c
endif
Include:
<signal.h>
License:
LGPLv2+
Maintainer:
Jim Meyering
|