| 1238 | } |
| 1239 | |
| 1240 | static void |
| 1241 | proc_td_siginfo_capture(struct thread *td, siginfo_t *si) |
| 1242 | { |
| 1243 | struct thread *thr; |
| 1244 | |
| 1245 | FOREACH_THREAD_IN_PROC(td->td_proc, thr) { |
| 1246 | if (thr == td) |
| 1247 | thr->td_si = *si; |
| 1248 | else |
| 1249 | thr->td_si.si_signo = 0; |
| 1250 | } |
| 1251 | } |
| 1252 | |
| 1253 | int |
| 1254 | kern_sigtimedwait(struct thread *td, sigset_t waitset, ksiginfo_t *ksi, |
no outgoing calls
no test coverage detected