Sign in
mojo
/
mojo-tools
/
862d13b6f591fb83034e80ed5a8c59fb9d0b7b56
/
.
/
fusl
/
src
/
thread
/
pthread_kill.c
blob: e891eb6893ea7213afcd16a647c7d9854373f6e4 [
file
] [
log
] [
blame
]
#include
"pthread_impl.h"
int
pthread_kill
(
pthread_t
t
,
int
sig
)
{
int
r
;
__lock
(
t
->
killlock
);
r
=
t
->
dead
?
ESRCH
:
-
__syscall
(
SYS_tkill
,
t
->
tid
,
sig
);
__unlock
(
t
->
killlock
);
return
r
;
}