repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Don't try to setup and use X11 shared memory if
[tangerine.git]
/
compiler
/
clib
/
raise.c
blob
1693b79c69d20beeaea39063441c92dc8c269fdb
1
#include <unistd.h>
2
#include <signal.h>
3
4
/*****************************************************************************
5
6
NAME */
7
8
int
raise
(
9
10
/* SYNOPSIS */
11
int
signal
)
12
13
/* FUNCTION
14
15
INPUTS
16
17
RESULT
18
19
NOTES
20
21
EXAMPLE
22
23
BUGS
24
25
SEE ALSO
26
27
INTERNALS
28
29
******************************************************************************/
30
{
31
kill
(
getpid
(),
signal
);
32
}
33