Sign in
mojo
/
mojo
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
fusl
/
src
/
thread
/
pthread_kill.c
blob: acdb1ea6173c27284ed946a63831855908f28f19 [
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
;
}