MCPcopy Create free account
hub / github.com/F-Stack/f-stack / proc_td_siginfo_capture

Function proc_td_siginfo_capture

freebsd/kern/kern_sig.c:1240–1251  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1238}
1239
1240static void
1241proc_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
1253int
1254kern_sigtimedwait(struct thread *td, sigset_t waitset, ksiginfo_t *ksi,

Callers 2

kern_sigtimedwaitFunction · 0.85
postsigFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected