| 3398 | } |
| 3399 | |
| 3400 | int |
| 3401 | fget(struct thread *td, int fd, cap_rights_t *rightsp, struct file **fpp) |
| 3402 | { |
| 3403 | |
| 3404 | return (_fget(td, fd, fpp, 0, rightsp)); |
| 3405 | } |
| 3406 | |
| 3407 | int |
| 3408 | fget_mmap(struct thread *td, int fd, cap_rights_t *rightsp, vm_prot_t *maxprotp, |
no test coverage detected