NAME ^

php_pcntl.pir - PHP pcntl Library

DESCRIPTION ^

Functions ^

int pcntl_alarm(int seconds)

Set an alarm clock for delivery of a signal

NOT IMPLEMENTED.

bool pcntl_exec(string path [, array args [, array envs]])

Executes specified program in current process space as defined by exec(2)

NOT IMPLEMENTED.

int pcntl_fork(void)

Forks the currently running process following the same behavior as the UNIX fork() system call

NOT IMPLEMENTED.

int pcntl_getpriority([int pid [, int process_identifier]])

Get the priority of any process

NOT IMPLEMENTED.

bool pcntl_setpriority(int priority [, int pid [, int process_identifier]])

Change the priority of any process

NOT IMPLEMENTED.

bool pcntl_signal(int signo, callback handle [, bool restart_syscalls])

Assigns a system signal handler to a PHP function

NOT IMPLEMENTED.

int pcntl_wait(int &status)

Waits on or returns the status of a forked child as defined by the waitpid() system call

NOT IMPLEMENTED.

int pcntl_waitpid(int pid, int &status, int options)

Waits on or returns the status of a forked child as defined by the waitpid() system call

NOT IMPLEMENTED.

int pcntl_wexitstatus(int status)

Returns the status code of a child's exit

NOT IMPLEMENTED.

bool pcntl_wifexited(int status)

Returns true if the child status code represents a successful exit

NOT IMPLEMENTED.

bool pcntl_wifsignaled(int status)

Returns true if the child status code represents a process that was terminated due to a signal

NOT IMPLEMENTED.

bool pcntl_wifstopped(int status)

Returns true if the child status code represents a stopped process (WUNTRACED must have been used with waitpid)

NOT IMPLEMENTED.

int pcntl_wstopsig(int status)

Returns the number of the signal that caused the process to stop who's status code is passed

NOT IMPLEMENTED.

int pcntl_wtermsig(int status)

Returns the number of the signal that terminated the process who's status code is passed

NOT IMPLEMENTED.


parrot