]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man3/mkfifoat.3
Removed FIXME
[thirdparty/man-pages.git] / man3 / mkfifoat.3
1 .\" Hey Emacs! This file is -*- nroff -*- source.
2 .\"
3 .\" This manpage is Copyright (C) 2006, Michael Kerrisk
4 .\"
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date. The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein. The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\"
25 .\"
26 .TH MKFIFOAT 3 2006-04-06 "Linux 2.6.16" "Linux Programmer's Manual"
27 .SH NAME
28 mkfifoat \- make a FIFO (named pipe) relative to a directory file descriptor
29 .SH SYNOPSIS
30 .nf
31 .B #include <sys/stat.h>
32 .sp
33 .BI "int mkfifoat(int " dirfd ", const char *" pathname ", mode_t " mode );
34 .fi
35 .SH DESCRIPTION
36 The
37 .BR mkfifoat ()
38 system call operates in exactly the same way as
39 .BR mkfifo (3),
40 except for the differences described in this manual page.
41
42 If the pathname given in
43 .I pathname
44 is relative, then it is interpreted relative to the directory
45 referred to by the file descriptor
46 .IR dirfd
47 (rather than relative to the current working directory of
48 the calling process, as is done by
49 .BR mkfifo (3)
50 for a relative pathname).
51
52 If the pathname given in
53 .I pathname
54 is relative and
55 .I dirfd
56 is the special value
57 .BR AT_FDCWD ,
58 then
59 .I pathname
60 is interpreted relative to the current working
61 directory of the calling process (like
62 .BR mkfifo (3)).
63
64 If the pathname given in
65 .IR pathname
66 is absolute, then
67 .I dirfd
68 is ignored.
69 .SH "RETURN VALUE"
70 On success,
71 .BR mkfifoat ()
72 returns 0.
73 On error, \-1 is returned and
74 .I errno
75 is set to indicate the error.
76 .SH ERRORS
77 The same errors that occur for
78 .BR mkfifo (3)
79 can also occur for
80 .BR mkfifoat ().
81 The following additional errors can occur for
82 .BR mkfifoat ():
83 .TP
84 .B EBADF
85 .I dirfd
86 is not a valid file descriptor.
87 .TP
88 .B ENOTDIR
89 .I pathname
90 is a relative path and
91 .I dirfd
92 is a file descriptor referring to a file other than a directory.
93 .SH NOTES
94 See
95 .BR openat (2)
96 for an explanation of the need for
97 .BR mkfifoat ().
98 .SH "CONFORMING TO"
99 This system call is non-standard but is proposed
100 for inclusion in a future revision of POSIX.1.
101 .SH VERSIONS
102 .BR mkfifoat ()
103 was added to glibc in version 2.4.
104 It is implemented using
105 .BR mknod (2),
106 available on Linux since kernel 2.6.16.
107 .SH "SEE ALSO"
108 .BR openat (2),
109 .BR path_resolution (2),
110 .BR mkfifo (3).