]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/mkfifo.3
man*/: srcfix (Use .P instead of .PP or .LP)
[thirdparty/man-pages.git] / man3 / mkfifo.3
index 505b52af0ff9c3d77fb63f18098b4f2c730a285b..f57474ba196ba3e20d4df39835e81b69a90754f2 100644 (file)
@@ -16,20 +16,20 @@ Standard C library
 .nf
 .B #include <sys/types.h>
 .B #include <sys/stat.h>
-.PP
+.P
 .BI "int mkfifo(const char *" pathname ", mode_t " mode );
-.PP
+.P
 .BR "#include <fcntl.h>           " "/* Definition of AT_* constants */"
 .B #include <sys/stat.h>
-.PP
+.P
 .BI "int mkfifoat(int " dirfd ", const char *" pathname ", mode_t " mode );
 .fi
-.PP
+.P
 .RS -4
 Feature Test Macro Requirements for glibc (see
 .BR feature_test_macros (7)):
 .RE
-.PP
+.P
 .BR mkfifoat ():
 .nf
     Since glibc 2.10:
@@ -44,14 +44,14 @@ makes a FIFO special file with name \fIpathname\fP.
 It is modified by the
 process's \fBumask\fP in the usual way: the permissions of the created
 file are \fB(\fP\fImode\fP\fB & \[ti]umask)\fP.
-.PP
+.P
 A FIFO special file is similar to a pipe, except that it is created
 in a different way.
 Instead of being an anonymous communications
 channel, a FIFO special file is entered into the filesystem by
 calling
 .BR mkfifo ().
-.PP
+.P
 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
@@ -67,7 +67,7 @@ The
 function operates in exactly the same way as
 .BR mkfifo (),
 except for the differences described here.
-.PP
+.P
 If the pathname given in
 .I pathname
 is relative, then it is interpreted relative to the directory
@@ -77,7 +77,7 @@ referred to by the file descriptor
 the calling process, as is done by
 .BR mkfifo ()
 for a relative pathname).
-.PP
+.P
 If
 .I pathname
 is relative and
@@ -89,13 +89,13 @@ then
 is interpreted relative to the current working
 directory of the calling process (like
 .BR mkfifo ()).
-.PP
+.P
 If
 .I pathname
 is absolute, then
 .I dirfd
 is ignored.
-.PP
+.P
 See
 .BR openat (2)
 for an explanation of the need for