mirror of
https://github.com/fluencelabs/musl
synced 2025-05-22 12:11:31 +00:00
7 lines
123 B
C
7 lines
123 B
C
#include "pthread_impl.h"
|
|
|
|
int pthread_kill(pthread_t t, int sig)
|
|
{
|
|
return -__syscall(SYS_tgkill, t->pid, t->tid, sig);
|
|
}
|