9d85fa5b497fb06afcabf9d1258cc8e446b3dabd
[musl] / src / thread / pthread_kill.c
1 #define SYSCALL_RETURN_ERRNO
2 #include "pthread_impl.h"
3
4 int pthread_kill(pthread_t t, int sig)
5 {
6         return syscall3(__NR_tgkill, t->pid, t->tid, sig);
7 }