reference/posix/functions/posix-mkfifo.xml
265acc36ee4a1f4553a52030bf1717521c24dfb4
...
...
@@ -10,8 +10,8 @@
10
10
&reftitle.description;
11
11
<methodsynopsis>
12
12
<type>bool</type><methodname>posix_mkfifo</methodname>
13
-
<methodparam><type>string</type><parameter>pathname</parameter></methodparam>
14
-
<methodparam><type>int</type><parameter>mode</parameter></methodparam>
13
+
<methodparam><type>string</type><parameter>filename</parameter></methodparam>
14
+
<methodparam><type>int</type><parameter>permissions</parameter></methodparam>
15
15
</methodsynopsis>
16
16
<para>
17
17
<function>posix_mkfifo</function> creates a special
...
...
@@ -25,7 +25,7 @@
25
25
<para>
26
26
<variablelist>
27
27
<varlistentry>
28
-
<term><parameter>pathname</parameter></term>
28
+
<term><parameter>filename</parameter></term>
29
29
<listitem>
30
30
<para>
31
31
Path to the <literal>FIFO</literal> file.
...
...
@@ -33,10 +33,10 @@
33
33
</listitem>
34
34
</varlistentry>
35
35
<varlistentry>
36
-
<term><parameter>mode</parameter></term>
36
+
<term><parameter>permissions</parameter></term>
37
37
<listitem>
38
38
<para>
39
-
The second parameter <parameter>mode</parameter> has to be given in
39
+
The second parameter <parameter>permissions</parameter> has to be given in
40
40
octal notation (e.g. 0644). The permission of the newly created
41
41
<literal>FIFO</literal> also depends on the setting of the current
42
42
<function>umask</function>. The permissions of the created file are
43
43