| 1390 | }; |
| 1391 | #endif |
| 1392 | int |
| 1393 | sys_mkfifo(struct thread *td, struct mkfifo_args *uap) |
| 1394 | { |
| 1395 | |
| 1396 | return (kern_mkfifoat(td, AT_FDCWD, uap->path, UIO_USERSPACE, |
| 1397 | uap->mode)); |
| 1398 | } |
| 1399 | |
| 1400 | #ifndef _SYS_SYSPROTO_H_ |
| 1401 | struct mkfifoat_args { |
nothing calls this directly
no test coverage detected