| 2202 | } |
| 2203 | |
| 2204 | static __inline int |
| 2205 | getmq_read(struct thread *td, int fd, struct file **fpp, |
| 2206 | struct mqfs_node **ppn, struct mqueue **pmq) |
| 2207 | { |
| 2208 | |
| 2209 | return _getmq(td, fd, &cap_read_rights, fget_read, |
| 2210 | fpp, ppn, pmq); |
| 2211 | } |
| 2212 | |
| 2213 | static __inline int |
| 2214 | getmq_write(struct thread *td, int fd, struct file **fpp, |
no test coverage detected