PHP:pcntl_sigwaitinfo()的用法 PHP
pcntl_sigwaitinfo (PHP 5 = 5.3.0)
pcntl_sigwaitinfo — 等待信号 说明 int pcntl_sigwaitinfo ( array $set [, array &$sigin...
PHP:pcntl_sigprocmask()的用法 PHP
pcntl_sigprocmask
(PHP 5 >= 5.3.0)
pcntl_sigprocmask — 设置或检索阻塞信号
说明
bool pcntl_sigprocmask
( int $how
, array $set
[, array &$oldset
] )
函数p
PHP:pcntl_sigtimedwait()的用法 PHP
pcntl_sigtimedwait
(PHP 5 >= 5.3.0)
pcntl_sigtimedwait — 带超时机制的信号等待
说明
int pcntl_sigtimedwait
( array $set
[, array &$siginfo
[, int $seconds = 0
[
PHP:pcntl_fork()的用法 PHP
pcntl_fork (PHP 4 = 4.1.0, PHP 5)
pcntl_fork — 在当前进程当前位置产生分支(子进程)。译注:fork是创建了一个子进程,父进程和子进程 都从fork的位置开始向下继续执行,不同的是...
PHP:pcntl_signal_dispatch()的用法 PHP
pcntl_signal_dispatch (PHP 5 = 5.3.0)
pcntl_signal_dispatch — 调用等待信号的处理器 说明 bool pcntl_signal_dispatch ( void ) 函...
PHP:pcntl_getpriority()的用法 PHP
pcntl_getpriority
(PHP 5)
pcntl_getpriority — 获取任意进程的优先级
说明
int pcntl_getpriority
([ int $pid = getmypid()
[, int $process_identifier = PRIO_PROCESS
]] )
PHP:pcntl_setpriority()的用法 PHP
pcntl_setpriority
(PHP 5)
pcntl_setpriority — 修改任意进程的优先级
说明
bool pcntl_setpriority
( int $priority
[, int $pid = getmypid()
[, int $process_identifier =
PHP:pcntl_exec()的用法 PHP
pcntl_exec (PHP 4 = 4.2.0, PHP 5)
pcntl_exec — 在当前进程空间执行指定程序 说明 void pcntl_exec ( string $path [, array $args [, ...
PHP:pcntl_get_last_error()的用法 PHP
pcntl_get_last_error
(PHP 5 >= 5.3.4)
pcntl_get_last_error — Retrieve the error number set by the last pcntl function which failed
说明
int pcntl_get_last_error
( void
)
PHP:pcntl_alarm()的用法 PHP
pcntl_alarm (PHP 4 = 4.3.0, PHP 5)
pcntl_alarm — 为进程设置一个alarm闹钟信号 说明 int pcntl_alarm ( int $seconds ) 创建一个计时器,在指定...