| 3953 | } |
| 3954 | |
| 3955 | static void |
| 3956 | filt_sigdetach(struct knote *kn) |
| 3957 | { |
| 3958 | struct proc *p = kn->kn_ptr.p_proc; |
| 3959 | |
| 3960 | knlist_remove(p->p_klist, kn, 0); |
| 3961 | } |
| 3962 | |
| 3963 | /* |
| 3964 | * signal knotes are shared with proc knotes, so we apply a mask to |
nothing calls this directly
no test coverage detected