ARGSUSED */
| 1516 | #endif |
| 1517 | /* ARGSUSED */ |
| 1518 | int |
| 1519 | sys_fstat(struct thread *td, struct fstat_args *uap) |
| 1520 | { |
| 1521 | struct stat ub; |
| 1522 | int error; |
| 1523 | |
| 1524 | error = kern_fstat(td, uap->fd, &ub); |
| 1525 | if (error == 0) |
| 1526 | error = copyout(&ub, uap->sb, sizeof(ub)); |
| 1527 | return (error); |
| 1528 | } |
| 1529 | |
| 1530 | int |
| 1531 | kern_fstat(struct thread *td, int fd, struct stat *sbp) |
nothing calls this directly
no test coverage detected