MKFIFO(2) | System Calls Manual | MKFIFO(2) |
mkfifo
, mkfifoat
— make a fifo file
Standard C Library (libc, -lc)
#include
<sys/types.h>
#include <sys/stat.h>
int
mkfifo
(const
char *path, mode_t
mode);
int
mkfifoat
(int
fd, const char
*path, mode_t
mode);
The
mkfifo
()
system call creates a new fifo file with name path.
The access permissions are specified by mode and
restricted by the umask(2) of the calling process.
The fifo's owner ID is set to the process's effective user ID. The fifo's group ID is set to that of the parent directory in which it is created.
The
mkfifoat
()
system call is equivalent to mkfifo
() except in the
case where path specifies a relative path. In this
case the newly created FIFO is created relative to the directory associated
with the file descriptor fd instead of the current
working directory. If mkfifoat
() is passed the
special value AT_FDCWD
in the
fd parameter, the current working directory is used
and the behavior is identical to a call to
mkfifo
().
The mkfifo
() function returns the
value 0 if successful; otherwise the value -1 is returned and
the global variable errno is set to indicate the
error.
The mkfifo
() system call will fail and no
fifo will be created if:
ENOTSUP
]ENOTDIR
]ENAMETOOLONG
]ENOENT
]EACCES
]ELOOP
]EROFS
]EEXIST
]EPERM
]ENOSPC
]ENOSPC
]EDQUOT
]EDQUOT
]EIO
]EIO
]EFAULT
]In addition to the errors returned by the
mkfifo
(), the mkfifoat
() may
fail if:
The mkfifo
() system call is expected to
conform to IEEE Std 1003.1-1990
(“POSIX.1”). The mkfifoat
()
system call follows The Open Group Extended API Set 2 specification.
The mkfifoat
() system call appeared in
FreeBSD 8.0.
April 10, 2008 | Debian |