Skip to content

Commit 4facedd

Browse files
committed
PCNTLの翻訳
1 parent aa3d67a commit 4facedd

File tree

2 files changed

+76
-2
lines changed

2 files changed

+76
-2
lines changed

reference/pcntl/book.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!-- $Revision$ -->
3-
<!-- EN-Revision: 508e255fff6c604c31d5617fe9ddf6d776a3b43d Maintainer: takagi Status: ready -->
3+
<!-- EN-Revision: ee8d203f9230b0496f6d69cc1237d9ca63475ad7 Maintainer: takagi Status: ready -->
44
<!-- CREDITS: shimooka,hirokawa -->
55

66
<book xml:id="book.pcntl" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -39,10 +39,13 @@
3939
&note.no-windows.extension;
4040
</preface>
4141
<!-- }}} -->
42-
42+
4343
&reference.pcntl.setup;
4444
&reference.pcntl.constants;
4545
&reference.pcntl.examples;
46+
47+
&reference.pcntl.qosclass;
48+
4649
&reference.pcntl.reference;
4750

4851
</book>

reference/pcntl/qosclass.xml

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<reference xmlns="http://docbook.org/ns/docbook" xml:id="enum.qosclass" role="enum">
3+
<title>The QosClass Enum</title>
4+
<titleabbrev>QosClass</titleabbrev>
5+
6+
<partintro>
7+
<section xml:id="enum.qosclass.intro">
8+
&reftitle.intro;
9+
<simpara>
10+
列挙型の <enumname>QosClass</enumname> は、<function>pcntl_setqos_class</function> を使用して
11+
ユーザプロセスの優先度指定するために使用されます。
12+
</simpara>
13+
</section>
14+
15+
<section xml:id="enum.qosclass.synopsis">
16+
&reftitle.enumsynopsis;
17+
<enumsynopsis>
18+
<enumname>QosClass</enumname>
19+
20+
<enumitem>
21+
<enumidentifier>Pcntl::Background</enumidentifier>
22+
<enumitemdescription>
23+
全ての優先度が高いプロセスが終了した後に、このプロセスが実行されます。
24+
</enumitemdescription>
25+
</enumitem>
26+
27+
<enumitem>
28+
<enumidentifier>Pcntl::Default</enumidentifier>
29+
<enumitemdescription>
30+
全ての優先度が高いプロセスが終了した後、優先度の低いプロセスの前にこのプロセスが実行されます。
31+
</enumitemdescription>
32+
</enumitem>
33+
34+
<enumitem>
35+
<enumidentifier>Pcntl::UserInteractive</enumidentifier>
36+
<enumitemdescription>
37+
最優先レベルでプロセスを実行します。
38+
</enumitemdescription>
39+
</enumitem>
40+
41+
<enumitem>
42+
<enumidentifier>Pcntl::UserInitiated</enumidentifier>
43+
<enumitemdescription>
44+
45+
Runs the process at high priority level but below Pcntl::UserInteractive ones.
46+
</enumitemdescription>
47+
</enumitem>
48+
</enumsynopsis>
49+
</section>
50+
</partintro>
51+
</reference>
52+
<!-- Keep this comment at the end of the file
53+
Local variables:
54+
mode: sgml
55+
sgml-omittag:t
56+
sgml-shorttag:t
57+
sgml-minimize-attributes:nil
58+
sgml-always-quote-attributes:t
59+
sgml-indent-step:1
60+
sgml-indent-data:t
61+
indent-tabs-mode:nil
62+
sgml-parent-document:nil
63+
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
64+
sgml-exposed-tags:nil
65+
sgml-local-catalogs:nil
66+
sgml-local-ecat-files:nil
67+
End:
68+
vim600: syn=xml fen fdm=syntax fdl=2 si
69+
vim: et tw=78 syn=sgml
70+
vi: ts=1 sw=1
71+
-->

0 commit comments

Comments
 (0)