downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

pcntl_signal_dispatch> <pcntl_getpriority
[edit] Last updated: Fri, 23 Mar 2012

view this page in

pcntl_setpriority

(PHP 5)

pcntl_setprioritySürecin önceliğini değiştirir

Açıklama

bool pcntl_setpriority ( int $öncelik [, int $pid = getmypid() [, int $süreç_türü = PRIO_PROCESS ]] )

pid süreç kimlikli sürecin önceliğini değiştirir.

Değiştirgeler

öncelik

Genelde -20 ile 20 arasında bir değerdir. Öntanımlı öncelik 0 olup daha küçük değerler sürecin önceliğini arttırır. Öncelik seviyeleri sistem türüne ve çekirdeğe göre farklılık gösterdiğinden ayrıntılı bilgi için sisteminizdeki setpriority(2) kılavuz sayfasına bakınız.

pid

Belirtilmezse işlevi çağıran sürecin süreç kimliği kullanılır.

süreç_türü

PRIO_PGRP, PRIO_USER ve PRIO_PROCESS sabitlerinden biri.

Dönen Değerler

Başarı durumunda TRUE, başarısızlık durumunda FALSE döner.

Ayrıca Bakınız



add a note add a note User Contributed Notes pcntl_setpriority
t dot stobbe at blackdogdev dot com 27-Aug-2006 03:49
As for the renice function by leandro dot pereira at gmail dot com, this isn't true.  pcntl_setpriority() doesn't set the nice level of a process, but instead sets the base priority of it.  At first glance this might seem like the same thing, but on a system level, they are actually quite different.

In fact, if you're looking to use pcntl_setpriority() to prioritize your process (a tool or a daemon or what-not), I wouldn't recomend using setpriority at all, but renice it instead.  Let the system manage priorities and you'll end up with the results you were looking for.

This applies only to POSIX based systems only (as does the function presented by leandro dot pereira at gmail dot com as well).
leandro dot pereira at gmail dot com 23-Dec-2004 07:08
The following snippet may be used under older versions of PHP to provide similar functionality.  Tested only under Linux.

<?php
function _pcntl_setpriority($priority, $pid = 0)
{
       
$priority = (int)$priority;
       
$pid = (int)$pid;

        if (
$priority > 20 && $priority < -20) {
                return
False;
        }
        if (
$pid == 0) {
               
$pid = getmypid();
        }

        return
system("renice  $priority -p $pid") != false;
}

?>

 
show source | credits | stats | sitemap | contact | advertising | mirror sites