-
Notifications
You must be signed in to change notification settings - Fork 740
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
Pcntl php84 #4073
Pcntl php84 #4073
Conversation
for #3872 |
reference/pcntl/constants.xml
Outdated
<variablelist xml:id="constant.pcntl-qosclass.constants" role="constant_list"> | ||
<title>QosClass constants</title> | ||
<varlistentry xml:id="constant.background"> | ||
<term> | ||
<constant>Pcntl::Background</constant> | ||
(<type>enum</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
Runs the process after all high-priority ones had ran their courses. | ||
Available as of PHP 8.4.0 (macOs only). | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.default"> | ||
<term> | ||
<constant>Pcntl::Default</constant> | ||
(<type>enum</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
Runs the process after all high-priority processes but before the low-priority ones. | ||
Available as of PHP 8.4.0 (macOs only). | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.user-interactive"> | ||
<term> | ||
<constant>Pcntl::UserInteractive</constant> | ||
(<type>enum</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
Runs the process as the highest priority level. | ||
Available as of PHP 8.4.0 (macOs only). | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
<varlistentry xml:id="constant.user-initiated"> | ||
<term> | ||
<constant>Pcntl::UserInitiated</constant> | ||
(<type>enum</type>) | ||
</term> | ||
<listitem> | ||
<simpara> | ||
Runs the process at high priority level but below Pcntl::UserInteractive ones. | ||
Available as of PHP 8.4.0 (macOs only). | ||
</simpara> | ||
</listitem> | ||
</varlistentry> | ||
</variablelist> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is an enum, so it should not be documented here actually see #4080 for how such a page should look (albeit we don't have rendering support yet).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes I expected you would ask me changes, kept it as a separate commit. Ok will have a look.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Feel free to merge the first commit then :)
ec882bb
to
05a1944
Compare
No description provided.