1
0
mirror of https://github.com/php/doc-ja.git synced 2026-03-25 15:42:08 +01:00
Files
archived-doc-ja/reference/exec/functions/proc-nice.xml
2010-03-29 00:47:47 +00:00

91 lines
2.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: 96c9d88bad9a7d7d44bfb7f26c226df7ee9ddf26 Maintainer: shimooka Status: ready -->
<refentry xml:id='function.proc-nice' xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>proc_nice</refname>
<refpurpose>現在のプロセスの優先度を変更する</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>bool</type><methodname>proc_nice</methodname>
<methodparam><type>int</type><parameter>increment</parameter></methodparam>
</methodsynopsis>
<para>
<function>proc_nice</function> は、現在のプロセスの優先度を
<parameter>increment</parameter> で指定された値に変更します。
<parameter>increment</parameter> が正数の場合、
現在のプロセスの優先度をより低くし、<parameter>increment</parameter>
が負数の場合は優先度が上がります。
</para>
<para>
<function>proc_nice</function> は、<function>proc_open</function>
やそれに関連する関数とは関係ありません。
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
<varlistentry>
<term><parameter>increment</parameter></term>
<listitem>
<para>
変更する優先度の増加値
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
&return.success;
ユーザーが優先度を変更する権限を持っていないなど、
エラーが発生した場合は <constant>E_WARNING</constant>
レベルのエラーも発行されます。
</para>
</refsect1>
<refsect1 role="notes">
&reftitle.notes;
<note>
<title>可用性</title>
<para>
<function>proc_nice</function> は、使用しているシステムが 'nice'
の機能を持っている場合のみ利用可能です。
'nice' は次のシステムに準拠しています:
SVr4, SVID EXT, AT&amp;T, X/OPEN, BSD 4.3 。
これは Windows では <function>proc_nice</function>
を利用できないことを意味します。
</para>
</note>
</refsect1>
</refentry>
<!-- 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
-->