Add si_errno to siginfo_t

This commit is contained in:
Gregory Nutt
2015-08-14 10:10:32 -06:00
parent 6df94096ca
commit 768d892188
10 changed files with 16 additions and 5 deletions
+1
View File
@@ -116,6 +116,7 @@ int pthread_kill(pthread_t thread, int signo)
info.si_signo = signo;
info.si_code = SI_USER;
info.si_errno = EINTR;
info.si_value.sival_ptr = NULL;
#ifdef CONFIG_SCHED_HAVE_PARENT
info.si_pid = rtcb->pid;