| 3524 | } |
| 3525 | |
| 3526 | int |
| 3527 | fgetvp(struct thread *td, int fd, cap_rights_t *rightsp, struct vnode **vpp) |
| 3528 | { |
| 3529 | |
| 3530 | return (_fgetvp(td, fd, 0, rightsp, vpp)); |
| 3531 | } |
| 3532 | |
| 3533 | int |
| 3534 | fgetvp_rights(struct thread *td, int fd, cap_rights_t *needrightsp, |
no test coverage detected