NAME ^

php_pcntl.pir - PHP pcntl Library

DESCRIPTION ^

Functions ^

int pcntl_alarm(int seconds)
Set an alarm clock for delivery of a signalNOT 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 callNOT IMPLEMENTED.
int pcntl_getpriority([int pid [, int process_identifier]])
Get the priority of any processNOT IMPLEMENTED.
bool pcntl_setpriority(int priority [, int pid [, int process_identifier]])
Change the priority of any processNOT IMPLEMENTED.
bool pcntl_signal(int signo, callback handle [, bool restart_syscalls])
Assigns a system signal handler to a PHP functionNOT IMPLEMENTED.
int pcntl_wait(int &status)
Waits on or returns the status of a forked child as defined by the waitpid() system callNOT 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 callNOT IMPLEMENTED.
int pcntl_wexitstatus(int status)
Returns the status code of a child's exitNOT IMPLEMENTED.
bool pcntl_wifexited(int status)
Returns true if the child status code represents a successful exitNOT IMPLEMENTED.
bool pcntl_wifsignaled(int status)
Returns true if the child status code represents a process that was terminated due to a signalNOT 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 passedNOT IMPLEMENTED.
int pcntl_wtermsig(int status)
Returns the number of the signal that terminated the process who's status code is passedNOT IMPLEMENTED.


parrot