Function otter_api_tests::unistd::mkfifoat[]

pub fn mkfifoat<P>(
    dirfd: Option<i32>,
    path: &P,
    mode: Mode
) -> Result<(), Error> 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).