X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/91447636331957f3d9b5ca5b508f07c526b0074d..bca245acd4c03fd752d1a45f011ad495e60fe53d:/bsd/man/man2/mkfifo.2 diff --git a/bsd/man/man2/mkfifo.2 b/bsd/man/man2/mkfifo.2 index 7d843f2c5..29e2d9240 100644 --- a/bsd/man/man2/mkfifo.2 +++ b/bsd/man/man2/mkfifo.2 @@ -45,7 +45,7 @@ .Ft int .Fn mkfifo "const char *path" "mode_t mode" .Sh DESCRIPTION -.Fn Mkfifo +.Fn mkfifo creates a new fifo file with name .Fa path . The access permissions are @@ -63,7 +63,7 @@ A 0 return value indicates success. A -1 return value indicates an error, and an error code is stored in .Va errno . .Sh ERRORS -.Fn Mkfifo +.Fn mkfifo will fail and no fifo will be created if: .Bl -tag -width Er .It Bq Er ENOTSUP @@ -112,6 +112,8 @@ error occurred while reading from or writing to the file system. .It Bq Er EFAULT .Fa Path points outside the process's allocated address space. +.It Bq Eq EILSEQ +The filename does not match the encoding rules. .El .Sh SEE ALSO .Xr chmod 2 ,