repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ipc: prefer SYS_ipc when it is defined
[musl.git]
/
src
/
signal
/
raise.c
blob
f0512019a1921eea797ac84252fd4fd01e3d6d7a
1
#include <signal.h>
2
#include <stdint.h>
3
#include
"syscall.h"
4
#include
"pthread_impl.h"
5
6
int
raise
(
int
sig
)
7
{
8
sigset_t set
;
9
__block_app_sigs
(&
set
);
10
int
ret
=
syscall
(
SYS_tkill
,
__pthread_self
()->
tid
,
sig
);
11
__restore_sigs
(&
set
);
12
return
ret
;
13
}