Sign in
cobalt
/
cobalt
/
286dd7840608e9cf78bc4a603ff2ec2ee39750c5
/
.
/
src
/
third_party
/
musl
/
src
/
thread
/
pthread_kill.c
blob: 6d70e626daf40bdf8e60240fc1fbb1b561d377dd [
file
] [
log
] [
blame
]
#include
"pthread_impl.h"
int
pthread_kill
(
pthread_t
t
,
int
sig
)
{
int
r
;
LOCK
(
t
->
killlock
);
r
=
t
->
tid
?
-
__syscall
(
SYS_tkill
,
t
->
tid
,
sig
)
:
(
sig
+
0U
>=
_NSIG
?
EINVAL
:
0
);
UNLOCK
(
t
->
killlock
);
return
r
;
}