| 212 | } |
| 213 | |
| 214 | static int |
| 215 | logkqread(struct knote *kn, long hint) |
| 216 | { |
| 217 | |
| 218 | mtx_assert(&msgbuf_lock, MA_OWNED); |
| 219 | kn->kn_data = msgbuf_getcount(msgbufp); |
| 220 | return (kn->kn_data != 0); |
| 221 | } |
| 222 | |
| 223 | static void |
| 224 | logkqdetach(struct knote *kn) |
nothing calls this directly
no test coverage detected