| 3798 | } |
| 3799 | |
| 3800 | static void |
| 3801 | filt_sordetach(struct knote *kn) |
| 3802 | { |
| 3803 | struct socket *so = kn->kn_fp->f_data; |
| 3804 | |
| 3805 | so_rdknl_lock(so); |
| 3806 | knlist_remove(&so->so_rdsel.si_note, kn, 1); |
| 3807 | if (!SOLISTENING(so) && knlist_empty(&so->so_rdsel.si_note)) |
| 3808 | so->so_rcv.sb_flags &= ~SB_KNOTE; |
| 3809 | so_rdknl_unlock(so); |
| 3810 | } |
| 3811 | |
| 3812 | /*ARGSUSED*/ |
| 3813 | static int |
nothing calls this directly
no test coverage detected