| 2520 | }; |
| 2521 | #endif |
| 2522 | int |
| 2523 | sys_lpathconf(struct thread *td, struct lpathconf_args *uap) |
| 2524 | { |
| 2525 | long value; |
| 2526 | int error; |
| 2527 | |
| 2528 | error = kern_pathconf(td, uap->path, UIO_USERSPACE, uap->name, |
| 2529 | NOFOLLOW, &value); |
| 2530 | if (error == 0) |
| 2531 | td->td_retval[0] = value; |
| 2532 | return (error); |
| 2533 | } |
| 2534 | |
| 2535 | int |
| 2536 | kern_pathconf(struct thread *td, const char *path, enum uio_seg pathseg, |
nothing calls this directly
no test coverage detected