| 1405 | }; |
| 1406 | #endif |
| 1407 | int |
| 1408 | sys_mkfifoat(struct thread *td, struct mkfifoat_args *uap) |
| 1409 | { |
| 1410 | |
| 1411 | return (kern_mkfifoat(td, uap->fd, uap->path, UIO_USERSPACE, |
| 1412 | uap->mode)); |
| 1413 | } |
| 1414 | |
| 1415 | int |
| 1416 | kern_mkfifoat(struct thread *td, int fd, const char *path, |
nothing calls this directly
no test coverage detected