mirror of
https://github.com/fluencelabs/musl
synced 2025-05-22 04:01:34 +00:00
8 lines
151 B
C
8 lines
151 B
C
|
#define SYSCALL_RETURN_ERRNO
|
||
|
#include "pthread_impl.h"
|
||
|
|
||
|
int pthread_kill(pthread_t t, int sig)
|
||
|
{
|
||
|
return syscall3(__NR_tgkill, t->pid, t->tid, sig);
|
||
|
}
|