| 3456 | } |
| 3457 | |
| 3458 | int |
| 3459 | fget_write(struct thread *td, int fd, cap_rights_t *rightsp, struct file **fpp) |
| 3460 | { |
| 3461 | |
| 3462 | return (_fget(td, fd, fpp, FWRITE, rightsp)); |
| 3463 | } |
| 3464 | |
| 3465 | int |
| 3466 | fget_fcntl(struct thread *td, int fd, cap_rights_t *rightsp, int needfcntl, |
no test coverage detected