| 2211 | } |
| 2212 | |
| 2213 | static __inline int |
| 2214 | getmq_write(struct thread *td, int fd, struct file **fpp, |
| 2215 | struct mqfs_node **ppn, struct mqueue **pmq) |
| 2216 | { |
| 2217 | |
| 2218 | return _getmq(td, fd, &cap_write_rights, fget_write, |
| 2219 | fpp, ppn, pmq); |
| 2220 | } |
| 2221 | |
| 2222 | static int |
| 2223 | kern_kmq_setattr(struct thread *td, int mqd, const struct mq_attr *attr, |
no test coverage detected