]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/man/man2/mkfifo.2
xnu-7195.101.1.tar.gz
[apple/xnu.git] / bsd / man / man2 / mkfifo.2
index af5d7615f2c5f909bcd16aefa9930fbe6001e9a8..29e2d9240105fd1f75696f8e85b891bb4d0bf612 100644 (file)
@@ -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,10 +63,10 @@ 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 EOPNOTSUPP
+.It Bq Er ENOTSUP
 The kernel has not been configured to support fifo's.
 .It Bq Er ENOTDIR
 A component of the path prefix is not a directory.
@@ -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 ,