Skip to content

Commit 10d0dce

Browse files
committed
[PHP 8.4] Pcntl::QosClass
1 parent 71fa455 commit 10d0dce

File tree

2 files changed

+71
-0
lines changed

2 files changed

+71
-0
lines changed

reference/pcntl/qosclass.xml

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<reference xmlns="http://docbook.org/ns/docbook" xml:id="enum.roundingmode" 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+
The <enumname>QosClass</enumname> enum is used to specify the user process
11+
priority with <function>pcntl_setqos_class</function>.
12+
</simpara>
13+
</section>
14+
15+
<section xml:id="enum.roundingmode.synopsis">
16+
&reftitle.enumsynopsis;
17+
<enumsynopsis>
18+
<enumname>QosClass</enumname>
19+
20+
<enumitem>
21+
<enumidentifier>Pcntl::Background</enumidentifier>
22+
<enumitemdescription>
23+
Runs the process after all high-priority ones had ran their courses.
24+
</enumitemdescription>
25+
</enumitem>
26+
27+
<enumitem>
28+
<enumidentifier>Pcntl::Default</enumidentifier>
29+
<enumitemdescription>
30+
Runs the process after all high-priority processes but before the low-priority ones.
31+
</enumitemdescription>
32+
</enumitem>
33+
34+
<enumitem>
35+
<enumidentifier>Pcntl::UserInteractive</enumidentifier>
36+
<enumitemdescription>
37+
Runs the process as the highest priority level.
38+
</enumitemdescription>
39+
</enumitem>
40+
41+
<enumitem>
42+
<enumidentifier>Pcntl::UserInitiated</enumidentifier>
43+
<enumitemdescription>
44+
Runs the process at high priority level but below Pcntl::UserInteractive ones.
45+
</enumitemdescription>
46+
</enumitem>
47+
</enumsynopsis>
48+
</section>
49+
</partintro>
50+
</reference>
51+
<!-- Keep this comment at the end of the file
52+
Local variables:
53+
mode: sgml
54+
sgml-omittag:t
55+
sgml-shorttag:t
56+
sgml-minimize-attributes:nil
57+
sgml-always-quote-attributes:t
58+
sgml-indent-step:1
59+
sgml-indent-data:t
60+
indent-tabs-mode:nil
61+
sgml-parent-document:nil
62+
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
63+
sgml-exposed-tags:nil
64+
sgml-local-catalogs:nil
65+
sgml-local-ecat-files:nil
66+
End:
67+
vim600: syn=xml fen fdm=syntax fdl=2 si
68+
vim: et tw=78 syn=sgml
69+
vi: ts=1 sw=1
70+
-->

reference/pcntl/versions.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
<function name="pcntl_wifstopped" from="PHP 4 &gt;= 4.1.0, PHP 5, PHP 7, PHP 8"/>
3131
<function name="pcntl_wstopsig" from="PHP 4 &gt;= 4.1.0, PHP 5, PHP 7, PHP 8"/>
3232
<function name="pcntl_wtermsig" from="PHP 4 &gt;= 4.1.0, PHP 5, PHP 7, PHP 8"/>
33+
<function name="qosclass" from="PHP 8 &gt;= 8.4.0"/>
3334
</versions>
3435
<!-- Keep this comment at the end of the file
3536
Local variables:

0 commit comments

Comments
 (0)