pcntl_getpriority
(PHP 5, PHP 7, PHP 8)
pcntl_getpriority — プロセスの優先度を取得する
説明
pcntl_getpriority() は、
process_id
の優先度を設定します。システムの型やカーネルの
バージョンによって優先度の扱いは違うので、詳細についてはシステムの
getpriority(2) の man ページを参照ください。
パラメータ
process_id
-
null
だった場合は、現在のプロセスの プロセスID を使用します。 mode
-
PRIO_PGRP
、PRIO_USER
、PRIO_PROCESS
、PRIO_DARWIN_BG
、PRIO_DARWIN_THREAD
のいずれか。
戻り値
pcntl_getpriority() はプロセスの優先度を返します。
エラー時には false
を返します。数字が小さいほど、優先順位は上となります。
変更履歴
バージョン | 説明 |
---|---|
8.0.0 |
process_id は、nullable になりました。
|
+add a note
User Contributed Notes 1 note
jonathan at jcdesigns dot com ¶
16 years ago
This function is ideal for checking if a given process is running, I have seen solutions that involve running the system utilites like PS and parsing the answer, which should work fine, but this allows you to check a given PID with a single call
function CheckPID( $PID )
{
// Check if the passed in PID represents a vlaid process in the system
// Returns true if it does
// Turn off non-fatal runtime warning for a moment as we know we
// will get one if the PID does not represent a valid process
$oldErrorLevel = error_reporting(0);
error_reporting( $oldErrorLevel & ~E_WARNING );
$res = pcntl_getpriority($PID);
error_reporting( $oldErrorLevel);
return ! ( $res === false);
}
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google