forked from php/doc-en
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PHP 8.4] Pcntl::QosClass (php#4095)
- Loading branch information
Showing
2 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<reference xmlns="http://docbook.org/ns/docbook" xml:id="enum.roundingmode" role="enum"> | ||
<title>The QosClass Enum</title> | ||
<titleabbrev>QosClass</titleabbrev> | ||
|
||
<partintro> | ||
<section xml:id="enum.qosclass.intro"> | ||
&reftitle.intro; | ||
<simpara> | ||
The <enumname>QosClass</enumname> enum is used to specify the user process | ||
priority with <function>pcntl_setqos_class</function>. | ||
</simpara> | ||
</section> | ||
|
||
<section xml:id="enum.roundingmode.synopsis"> | ||
&reftitle.enumsynopsis; | ||
<enumsynopsis> | ||
<enumname>QosClass</enumname> | ||
|
||
<enumitem> | ||
<enumidentifier>Pcntl::Background</enumidentifier> | ||
<enumitemdescription> | ||
Runs the process after all high-priority ones had ran their courses. | ||
</enumitemdescription> | ||
</enumitem> | ||
|
||
<enumitem> | ||
<enumidentifier>Pcntl::Default</enumidentifier> | ||
<enumitemdescription> | ||
Runs the process after all high-priority processes but before the low-priority ones. | ||
</enumitemdescription> | ||
</enumitem> | ||
|
||
<enumitem> | ||
<enumidentifier>Pcntl::UserInteractive</enumidentifier> | ||
<enumitemdescription> | ||
Runs the process as the highest priority level. | ||
</enumitemdescription> | ||
</enumitem> | ||
|
||
<enumitem> | ||
<enumidentifier>Pcntl::UserInitiated</enumidentifier> | ||
<enumitemdescription> | ||
Runs the process at high priority level but below Pcntl::UserInteractive ones. | ||
</enumitemdescription> | ||
</enumitem> | ||
</enumsynopsis> | ||
</section> | ||
</partintro> | ||
</reference> | ||
<!-- Keep this comment at the end of the file | ||
Local variables: | ||
mode: sgml | ||
sgml-omittag:t | ||
sgml-shorttag:t | ||
sgml-minimize-attributes:nil | ||
sgml-always-quote-attributes:t | ||
sgml-indent-step:1 | ||
sgml-indent-data:t | ||
indent-tabs-mode:nil | ||
sgml-parent-document:nil | ||
sgml-default-dtd-file:"~/.phpdoc/manual.ced" | ||
sgml-exposed-tags:nil | ||
sgml-local-catalogs:nil | ||
sgml-local-ecat-files:nil | ||
End: | ||
vim600: syn=xml fen fdm=syntax fdl=2 si | ||
vim: et tw=78 syn=sgml | ||
vi: ts=1 sw=1 | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters