Function nix::unistd::mkfifoat

pub fn mkfifoat<P: ?Sized + NixPath>(dirfd: Option<RawFd>, path: &P, mode: Mode) -> Result<()>
Documentation

Creates new fifo special file (named pipe) with path path and access rights mode.

If dirfd has a value, then path is relative to directory associated with the file descriptor.

If dirfd is None, then path is relative to the current working directory.

References

mkfifoat(2).