man-pages/man3/mkfifo.3

109 lines
3.5 KiB
Groff
Raw Normal View History

2004-11-03 13:51:07 +00:00
.\" Hey Emacs! This file is -*- nroff -*- source.
.\"
.\" This manpage is Copyright (C) 1995 James R. Van Zandt <jrv@vanzandt.mv.com>
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one.
.\"
2004-11-03 13:51:07 +00:00
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date. The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein. The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
.\"
2004-11-03 13:51:07 +00:00
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.\" changed section from 2 to 3, aeb, 950919
.\"
2007-05-30 05:36:26 +00:00
.TH MKFIFO 3 1995-09-03 "GNU" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
mkfifo \- make a FIFO special file (a named pipe)
.SH SYNOPSIS
.nf
.B #include <sys/types.h>
.B #include <sys/stat.h>
.sp
.BI "int mkfifo(const char *" pathname ", mode_t " mode );
.fi
.SH DESCRIPTION
.BR mkfifo ()
makes a FIFO special file with name \fIpathname\fP.
\fImode\fP specifies the FIFO's permissions.
It is modified by the
2004-11-03 13:51:07 +00:00
process's \fBumask\fP in the usual way: the permissions of the created
file are \fB(\fP\fImode\fP\fB & ~umask)\fP.
.PP
A FIFO special file is similar to a pipe, except that it is created
in a different way.
Instead of being an anonymous communications
2004-11-03 13:51:07 +00:00
channel, a FIFO special file is entered into the file system by
calling
.BR mkfifo ().
2004-11-03 13:51:07 +00:00
.PP
Once you have created a FIFO special file in this way, any process can
open it for reading or writing, in the same way as an ordinary file.
However, it has to be open at both ends simultaneously before you can
proceed to do any input or output operations on it.
Opening a FIFO for reading normally blocks until some
other process opens the same FIFO for writing, and vice versa.
See
2006-04-21 01:46:04 +00:00
.BR fifo (7)
2004-11-03 13:51:07 +00:00
for non-blocking handling of FIFO special files.
.SH "RETURN VALUE"
On success
.BR mkfifo ()
returns 0.
2007-05-01 08:15:41 +00:00
In the case of an error, \-1 is returned (in which case, \fIerrno\fP
2004-11-03 13:51:07 +00:00
is set appropriately).
.SH ERRORS
.TP
.B EACCES
One of the directories in \fIpathname\fP did not allow search
(execute) permission.
.TP
.B EEXIST
\fIpathname\fP already exists.
.TP
.B ENAMETOOLONG
Either the total length of \fIpathname\fP is greater than
2006-02-12 22:15:41 +00:00
\fBPATH_MAX\fP, or an individual filename component has a length
greater than \fBNAME_MAX\fP.
In the GNU system, there is no imposed
2006-02-12 22:15:41 +00:00
limit on overall filename length, but some file systems may place
2004-11-03 13:51:07 +00:00
limits on the length of a component.
.TP
.B ENOENT
A directory component in \fIpathname\fP does not exist or is a
dangling symbolic link.
.TP
.B ENOSPC
2008-03-19 07:26:08 +00:00
The directory or file system has no room for the new file.
2004-11-03 13:51:07 +00:00
.TP
.B ENOTDIR
A component used as a directory in \fIpathname\fP is not, in fact, a
directory.
.TP
.B EROFS
2008-03-19 07:26:08 +00:00
\fIpathname\fP refers to a read-only file system.
2004-11-03 13:51:07 +00:00
.SH "CONFORMING TO"
2006-08-03 13:57:30 +00:00
POSIX.1-2001.
2004-11-03 13:51:07 +00:00
.SH "SEE ALSO"
.BR mkfifo (1),
.BR close (2),
.BR open (2),
.BR read (2),
.BR stat (2),
.BR umask (2),
.BR write (2),
2006-04-05 05:34:56 +00:00
.BR mkfifoat (3),
2006-04-21 01:46:04 +00:00
.BR fifo (7)