if returning errno value directly from a syscall, we need to negate it.

This commit is contained in:
Rich Felker
2011-03-19 23:18:34 -04:00
parent bae862ab18
commit be82e122bf
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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);
}