| 220 | }; |
| 221 | #endif |
| 222 | int |
| 223 | sys_pread(struct thread *td, struct pread_args *uap) |
| 224 | { |
| 225 | |
| 226 | return (kern_pread(td, uap->fd, uap->buf, uap->nbyte, uap->offset)); |
| 227 | } |
| 228 | |
| 229 | int |
| 230 | kern_pread(struct thread *td, int fd, void *buf, size_t nbyte, off_t offset) |
nothing calls this directly
no test coverage detected