ARGSUSED */
| 1594 | #endif |
| 1595 | /* ARGSUSED */ |
| 1596 | int |
| 1597 | sys_fpathconf(struct thread *td, struct fpathconf_args *uap) |
| 1598 | { |
| 1599 | long value; |
| 1600 | int error; |
| 1601 | |
| 1602 | error = kern_fpathconf(td, uap->fd, uap->name, &value); |
| 1603 | if (error == 0) |
| 1604 | td->td_retval[0] = value; |
| 1605 | return (error); |
| 1606 | } |
| 1607 | |
| 1608 | int |
| 1609 | kern_fpathconf(struct thread *td, int fd, int name, long *valuep) |
nothing calls this directly
no test coverage detected