repo.or.cz
/
cake.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
- Wait for mouse acks properly.
[cake.git]
/
compiler
/
clib
/
raise.c
blob
645b490d0ed637d00f08cc38f9b1ed2de08ff7a9
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
return
0
;
// disable compiler warning
33
}