Skip to content

Commit 0854cf0

Browse files
committed
Sync part of POSIX docs with EN to improve build situation
1 parent c23a64f commit 0854cf0

33 files changed

+328
-329
lines changed

reference/posix/configure.xml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- $Revision$ -->
3-
<!-- EN-Revision: 96c9d88bad9a7d7d44bfb7f26c226df7ee9ddf26 Maintainer: lboshell Status: ready -->
2+
<!-- EN-Revision: a7d56396b4b04d83871e084371cd6c6fecdafaa8 Maintainer: lboshell Status: ready -->
3+
<!-- Reviewed: yes -->
44
<section xml:id="posix.installation" xmlns="http://docbook.org/ns/docbook">
55
&reftitle.install;
66
<para>
7-
Las funciones POSIX son habilitadas por defecto. Puede deshabilitar
8-
las funciones tipo POSIX con <option
9-
role="configure">--disable-posix</option>.
7+
&installation.enabled.disable;
8+
<option role="configure">--disable-posix</option>
109
</para>
1110
</section>
1211

reference/posix/functions/posix-access.xml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- $Revision$ -->
3-
<!-- EN-Revision: 96c9d88bad9a7d7d44bfb7f26c226df7ee9ddf26 Maintainer: yago Status: ready -->
2+
<!-- EN-Revision: 8d417bd83842efbde90dbb51c31f99f474437ce4 Maintainer: yago Status: ready -->
43
<refentry xml:id="function.posix-access" xmlns="http://docbook.org/ns/docbook">
54
<refnamediv>
65
<refname>posix_access</refname>
@@ -12,8 +11,8 @@
1211
&reftitle.description;
1312
<methodsynopsis>
1413
<type>bool</type><methodname>posix_access</methodname>
15-
<methodparam><type>string</type><parameter>file</parameter></methodparam>
16-
<methodparam choice="opt"><type>int</type><parameter>mode</parameter><initializer>POSIX_F_OK</initializer></methodparam>
14+
<methodparam><type>string</type><parameter>filename</parameter></methodparam>
15+
<methodparam choice="opt"><type>int</type><parameter>flags</parameter><initializer>0</initializer></methodparam>
1716
</methodsynopsis>
1817
<para>
1918
<function>posix_access</function> verifica el permiso del usuario sobre un archivo.
@@ -25,15 +24,15 @@
2524
<para>
2625
<variablelist>
2726
<varlistentry>
28-
<term><parameter>file</parameter></term>
27+
<term><parameter>filename</parameter></term>
2928
<listitem>
3029
<para>
3130
El nombre del archivo a ser probado.
3231
</para>
3332
</listitem>
3433
</varlistentry>
3534
<varlistentry>
36-
<term><parameter>mode</parameter></term>
35+
<term><parameter>flags</parameter></term>
3736
<listitem>
3837
<para>
3938
Una máscara consistente de uno o más de los valores <constant>POSIX_F_OK</constant>,
@@ -91,10 +90,6 @@ if (posix_access($archivo, POSIX_R_OK | POSIX_W_OK)) {
9190
</para>
9291
</refsect1>
9392

94-
<refsect1 role="notes">
95-
&reftitle.notes;
96-
</refsect1>
97-
9893
<refsect1 role="seealso">
9994
&reftitle.seealso;
10095
<para>
@@ -106,7 +101,6 @@ if (posix_access($archivo, POSIX_R_OK | POSIX_W_OK)) {
106101
</refsect1>
107102

108103
</refentry>
109-
110104
<!-- Keep this comment at the end of the file
111105
Local variables:
112106
mode: sgml

reference/posix/functions/posix-ctermid.xml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,30 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- $Revision$ -->
3-
<!-- EN-Revision: 96c9d88bad9a7d7d44bfb7f26c226df7ee9ddf26 Maintainer: seros Status: ready -->
2+
<!-- EN-Revision: f8854f6a6a7907720ed8ec8657a2f466a82c0394 Maintainer: seros Status: ready -->
43
<!-- Reviewed: no -->
54
<refentry xml:id="function.posix-ctermid" xmlns="http://docbook.org/ns/docbook">
65
<refnamediv>
76
<refname>posix_ctermid</refname>
87
<refpurpose>Obtener el nombre de la ruta del terminal controlador</refpurpose>
98
</refnamediv>
10-
9+
1110
<refsect1 role="description">
1211
&reftitle.description;
1312
<methodsynopsis>
14-
<type>string</type><methodname>posix_ctermid</methodname>
13+
<type class="union"><type>string</type><type>false</type></type><methodname>posix_ctermid</methodname>
1514
<void/>
1615
</methodsynopsis>
1716
<para>
1817
Genera un <type>string</type> que es el nombre de la ruta del terminal
19-
controlador actual para el proceso. En caso de error se establecerá a errno,
18+
controlador actual para el proceso. En caso de error se establecerá a errno,
2019
que puede ser comprobado usando <function>posix_get_last_error</function>
2120
</para>
2221
</refsect1>
23-
22+
23+
<refsect1 role="parameters">
24+
&reftitle.parameters;
25+
&no.function.parameters;
26+
</refsect1>
27+
2428
<refsect1 role="returnvalues">
2529
&reftitle.returnvalues;
2630
<para>
@@ -29,7 +33,7 @@
2933
errno, que puede ser comprobado con <function>posix_get_last_error</function>.
3034
</para>
3135
</refsect1>
32-
36+
3337
<refsect1 role="examples">
3438
&reftitle.examples;
3539
<para>
@@ -48,7 +52,7 @@ echo "Esto ejecutándome desde ".posix_ctermid();
4852
</example>
4953
</para>
5054
</refsect1>
51-
55+
5256
<refsect1 role="seealso">
5357
&reftitle.seealso;
5458
<para>
@@ -59,7 +63,6 @@ echo "Esto ejecutándome desde ".posix_ctermid();
5963
</para>
6064
</refsect1>
6165
</refentry>
62-
6366
<!-- Keep this comment at the end of the file
6467
Local variables:
6568
mode: sgml

reference/posix/functions/posix-get-last-error.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- $Revision$ -->
3-
<!-- EN-Revision: 96c9d88bad9a7d7d44bfb7f26c226df7ee9ddf26 Maintainer: yago Status: ready -->
2+
<!-- EN-Revision: f8854f6a6a7907720ed8ec8657a2f466a82c0394 Maintainer: yago Status: ready -->
43
<refentry xml:id="function.posix-get-last-error" xmlns="http://docbook.org/ns/docbook">
54
<refnamediv>
65
<refname>posix_get_last_error</refname>
@@ -20,6 +19,11 @@
2019
</para>
2120
</refsect1>
2221

22+
<refsect1 role="parameters">
23+
&reftitle.parameters;
24+
&no.function.parameters;
25+
</refsect1>
26+
2327
<refsect1 role="returnvalues">
2428
&reftitle.returnvalues;
2529
<para>

reference/posix/functions/posix-getcwd.xml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- $Revision$ -->
3-
<!-- EN-Revision: 96c9d88bad9a7d7d44bfb7f26c226df7ee9ddf26 Maintainer: seros Status: ready -->
2+
<!-- EN-Revision: f8854f6a6a7907720ed8ec8657a2f466a82c0394 Maintainer: seros Status: ready -->
43
<!-- Reviewed: no -->
54
<refentry xml:id="function.posix-getcwd" xmlns="http://docbook.org/ns/docbook">
65
<refnamediv>
76
<refname>posix_getcwd</refname>
87
<refpurpose>Nombre de la ruta del directorio actual</refpurpose>
98
</refnamediv>
10-
9+
1110
<refsect1 role="description">
1211
&reftitle.description;
1312
<methodsynopsis>
14-
<type>string</type><methodname>posix_getcwd</methodname>
13+
<type class="union"><type>string</type><type>false</type></type><methodname>posix_getcwd</methodname>
1514
<void/>
1615
</methodsynopsis>
1716
<para>
@@ -21,6 +20,11 @@
2120
</para>
2221
</refsect1>
2322

23+
<refsect1 role="parameters">
24+
&reftitle.parameters;
25+
&no.function.parameters;
26+
</refsect1>
27+
2428
<refsect1 role="returnvalues">
2529
&reftitle.returnvalues;
2630
<para>
@@ -49,7 +53,7 @@ echo 'Mi directorio actual de trabajo es '.posix_getcwd();
4953
</example>
5054
</para>
5155
</refsect1>
52-
56+
5357
<refsect1 role="notes">
5458
&reftitle.notes;
5559
<note>
@@ -62,13 +66,12 @@ echo 'Mi directorio actual de trabajo es '.posix_getcwd();
6266
<listitem>
6367
<simpara>El nombre de la ruta ya no existe</simpara>
6468
</listitem>
65-
</itemizedlist>
69+
</itemizedlist>
6670
</para>
6771
</note>
6872
</refsect1>
6973

7074
</refentry>
71-
7275
<!-- Keep this comment at the end of the file
7376
Local variables:
7477
mode: sgml

reference/posix/functions/posix-getegid.xml

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- $Revision$ -->
3-
<!-- EN-Revision: 96c9d88bad9a7d7d44bfb7f26c226df7ee9ddf26 Maintainer: seros Status: ready -->
2+
<!-- EN-Revision: f8854f6a6a7907720ed8ec8657a2f466a82c0394 Maintainer: seros Status: ready -->
43
<!-- Reviewed: no -->
54
<refentry xml:id="function.posix-getegid" xmlns="http://docbook.org/ns/docbook">
65
<refnamediv>
76
<refname>posix_getegid</refname>
87
<refpurpose>Devuelve el ID efectivo de grupo del proceso actual</refpurpose>
98
</refnamediv>
10-
9+
1110
<refsect1 role="description">
1211
&reftitle.description;
1312
<methodsynopsis>
@@ -18,14 +17,19 @@
1817
Devuelve el ID efectivo de grupo efectivo numérico del proceso actual.
1918
</para>
2019
</refsect1>
21-
20+
21+
<refsect1 role="parameters">
22+
&reftitle.parameters;
23+
&no.function.parameters;
24+
</refsect1>
25+
2226
<refsect1 role="returnvalues">
2327
&reftitle.returnvalues;
2428
<para>
25-
Devuelve un <type>integer</type> del ID del grupo efectivo.
29+
Devuelve un <type>int</type> del ID del grupo efectivo.
2630
</para>
2731
</refsect1>
28-
32+
2933
<refsect1 role="examples">
3034
&reftitle.examples;
3135
<para>
@@ -48,7 +52,7 @@ echo 'Mi id del grupo efectivo es '.posix_getegid(); //40
4852
</example>
4953
</para>
5054
</refsect1>
51-
55+
5256
<refsect1 role="notes">
5357
&reftitle.notes;
5458
<para>
@@ -57,7 +61,7 @@ echo 'Mi id del grupo efectivo es '.posix_getegid(); //40
5761
una llamada al proceso usando <function>posix_setegid</function>.
5862
</para>
5963
</refsect1>
60-
64+
6165
<refsect1 role="seealso">
6266
&reftitle.seealso;
6367
<para>
@@ -68,7 +72,7 @@ echo 'Mi id del grupo efectivo es '.posix_getegid(); //40
6872
</simplelist>
6973
</para>
7074
</refsect1>
71-
75+
7276
</refentry>
7377

7478
<!-- Keep this comment at the end of the file

reference/posix/functions/posix-geteuid.xml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- $Revision$ -->
3-
<!-- EN-Revision: 96c9d88bad9a7d7d44bfb7f26c226df7ee9ddf26 Maintainer: seros Status: ready -->
2+
<!-- EN-Revision: f8854f6a6a7907720ed8ec8657a2f466a82c0394 Maintainer: seros Status: ready -->
43
<!-- Reviewed: no -->
54
<refentry xml:id="function.posix-geteuid" xmlns="http://docbook.org/ns/docbook">
65
<refnamediv>
76
<refname>posix_geteuid</refname>
87
<refpurpose>Devolver el ID efectivo de usuario del proceso actual</refpurpose>
98
</refnamediv>
10-
9+
1110
<refsect1 role="description">
1211
&reftitle.description;
1312
<methodsynopsis>
@@ -20,14 +19,19 @@
2019
convertirlo en un nombre de usuario utilizable.
2120
</para>
2221
</refsect1>
23-
22+
23+
<refsect1 role="parameters">
24+
&reftitle.parameters;
25+
&no.function.parameters;
26+
</refsect1>
27+
2428
<refsect1 role="returnvalues">
2529
&reftitle.returnvalues;
2630
<para>
27-
Devuelve el id de usuario, como un valor de tipo <type>integer</type>
31+
Devuelve el id de usuario, como un valor de tipo <type>int</type>
2832
</para>
2933
</refsect1>
30-
34+
3135
<refsect1 role="examples">
3236
&reftitle.examples;
3337
<para>
@@ -51,7 +55,7 @@ echo posix_geteuid()."\n"; //10000
5155
</example>
5256
</para>
5357
</refsect1>
54-
58+
5559
<refsect1 role="seealso">
5660
&reftitle.seealso;
5761
<para>

reference/posix/functions/posix-getgid.xml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- $Revision$ -->
3-
<!-- EN-Revision: 96c9d88bad9a7d7d44bfb7f26c226df7ee9ddf26 Maintainer: seros Status: ready -->
2+
<!-- EN-Revision: f8854f6a6a7907720ed8ec8657a2f466a82c0394 Maintainer: seros Status: ready -->
43
<!-- Reviewed: no -->
54
<refentry xml:id="function.posix-getgid" xmlns="http://docbook.org/ns/docbook">
65
<refnamediv>
76
<refname>posix_getgid</refname>
87
<refpurpose>Devuelve el ID real de grupo del proceso actual</refpurpose>
98
</refnamediv>
10-
9+
1110
<refsect1 role="description">
1211
&reftitle.description;
1312
<methodsynopsis>
@@ -18,14 +17,19 @@
1817
Devuelve el ID real numérico de grupo del proceso actual.
1918
</para>
2019
</refsect1>
21-
20+
21+
<refsect1 role="parameters">
22+
&reftitle.parameters;
23+
&no.function.parameters;
24+
</refsect1>
25+
2226
<refsect1 role="returnvalues">
2327
&reftitle.returnvalues;
2428
<para>
25-
Devuelve el id real de grupo, como un valor de tipo <type>integer</type>.
29+
Devuelve el id real de grupo, como un valor de tipo <type>int</type>.
2630
</para>
2731
</refsect1>
28-
32+
2933
<refsect1 role="examples">
3034
&reftitle.examples;
3135
<para>
@@ -48,7 +52,7 @@ echo 'Mi id efectivo de grupo es '.posix_getegid(); //40
4852
</example>
4953
</para>
5054
</refsect1>
51-
55+
5256
<refsect1 role="seealso">
5357
&reftitle.seealso;
5458
<para>
@@ -60,7 +64,7 @@ echo 'Mi id efectivo de grupo es '.posix_getegid(); //40
6064
</simplelist>
6165
</para>
6266
</refsect1>
63-
67+
6468
</refentry>
6569

6670
<!-- Keep this comment at the end of the file

0 commit comments

Comments
 (0)