summaryrefslogtreecommitdiffstats
path: root/fifo_make.3
diff options
context:
space:
mode:
Diffstat (limited to 'fifo_make.3')
-rw-r--r--fifo_make.324
1 files changed, 24 insertions, 0 deletions
diff --git a/fifo_make.3 b/fifo_make.3
new file mode 100644
index 0000000..489233d
--- /dev/null
+++ b/fifo_make.3
@@ -0,0 +1,24 @@
1.TH fifo_make 3
2.SH NAME
3fifo_make \- create a named pipe
4.SH SYNTAX
5.B #include <fifo.h>
6
7int \fBfifo_make\fP(\fIfn\fR,\fImode\fR);
8
9char *\fIfn\fR;
10.br
11int \fImode\fR;
12.SH DESCRIPTION
13.B fifo_make
14creates a new named pipe
15with name
16.I fn
17and mode
18.I mode
19(modified by the process umask).
20
21.B fifo_make
22returns 0 on success, -1 on error.
23.SH "SEE ALSO"
24mkfifo(2)