if returning errno value directly from a syscall, we need to negate it.
This commit is contained in:
@@ -2,5 +2,5 @@
|
||||
|
||||
int pthread_kill(pthread_t t, int sig)
|
||||
{
|
||||
return __syscall(__NR_tgkill, t->pid, t->tid, sig);
|
||||
return -__syscall(__NR_tgkill, t->pid, t->tid, sig);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user