pub fn mkfifoat<P>(
    dirfd: Option<i32>,
    path: &P,
    mode: Mode
) -> Result<(), Errno> where
    P: NixPath + ?Sized
Expand description

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).