Skip to content

Fix Pcntl\QosClass enum symbol names #4518

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion reference/pcntl/book.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
&reference.pcntl.constants;
&reference.pcntl.examples;

&reference.pcntl.qosclass;
&reference.pcntl.pcntl.qosclass;

&reference.pcntl.reference;

Expand Down
20 changes: 10 additions & 10 deletions reference/pcntl/qosclass.xml → reference/pcntl/pcntl.qosclass.xml
Original file line number Diff line number Diff line change
@@ -1,47 +1,47 @@
<?xml version="1.0" encoding="utf-8"?>
<reference xmlns="http://docbook.org/ns/docbook" xml:id="enum.qosclass" role="enum">
<title>The QosClass Enum</title>
<titleabbrev>QosClass</titleabbrev>
<reference xmlns="http://docbook.org/ns/docbook" xml:id="enum.pcntl-qosclass" role="enum">
<title>The Pcntl\QosClass Enum</title>
<titleabbrev>Pcntl\QosClass</titleabbrev>

<partintro>
<section xml:id="enum.qosclass.intro">
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<section xml:id="enum.qosclass.intro">
<section xml:id="enum.pcntl-qosclass.intro">

&reftitle.intro;
<simpara>
The <enumname>QosClass</enumname> enum is used to specify the user process
The <enumname>Pcntl\QosClass</enumname> enum is used to specify the user process
priority with <function>pcntl_setqos_class</function>.
</simpara>
</section>

<section xml:id="enum.qosclass.synopsis">
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<section xml:id="enum.qosclass.synopsis">
<section xml:id="enum.pcntl-qosclass.synopsis">

&reftitle.enumsynopsis;
<enumsynopsis>
<enumname>QosClass</enumname>
<enumname>Pcntl\QosClass</enumname>

<enumitem>
<enumidentifier>Pcntl::Background</enumidentifier>
<enumidentifier>Background</enumidentifier>
<enumitemdescription>
Runs the process after all high-priority ones had ran their courses.
</enumitemdescription>
</enumitem>

<enumitem>
<enumidentifier>Pcntl::Default</enumidentifier>
<enumidentifier>Default</enumidentifier>
<enumitemdescription>
Runs the process after all high-priority processes but before the low-priority ones.
</enumitemdescription>
</enumitem>

<enumitem>
<enumidentifier>Pcntl::UserInteractive</enumidentifier>
<enumidentifier>UserInteractive</enumidentifier>
<enumitemdescription>
Runs the process as the highest priority level.
</enumitemdescription>
</enumitem>

<enumitem>
<enumidentifier>Pcntl::UserInitiated</enumidentifier>
<enumidentifier>UserInitiated</enumidentifier>
<enumitemdescription>
Runs the process at high priority level but below Pcntl::UserInteractive ones.
Runs the process at high priority level but below UserInteractive ones.
</enumitemdescription>
</enumitem>
</enumsynopsis>
Expand Down