php-src/ext/pcntl
Jason Greene 261a60a360 @Made major improvents to the pcntl extension(Jason):
@ - Greatly improved performance, by switching the signal callback mechanism
@   to use ticks
@ - Implemented object signal callback ability by using array($obj, $method)
@ - Added a restart parameter to pcntl_signal, which allows you to disable
@   the default of system call restarting
Changed callback hash table to be initialized and destroyed per reqeust
(allows the ability to use request life zvals as handles)
Nuked warnings
Modified test script to adjust to new ticks backend
Some slight WS fixes
2002-08-22 04:20:10 +00:00
..
tests - MFB (4_2_0) 2002-04-12 16:54:01 +00:00
config.m4 php_new_extension 2002-03-12 16:53:19 +00:00
CREDITS @Added new experimental module pcntl (Process Control) (Jason) 2001-06-12 08:54:25 +00:00
EXPERIMENTAL @Added new experimental module pcntl (Process Control) (Jason) 2001-06-12 08:54:25 +00:00
pcntl.c @Made major improvents to the pcntl extension(Jason): 2002-08-22 04:20:10 +00:00
php_pcntl.h @Made major improvents to the pcntl extension(Jason): 2002-08-22 04:20:10 +00:00
php_signal.c @Made major improvents to the pcntl extension(Jason): 2002-08-22 04:20:10 +00:00
php_signal.h @Made major improvents to the pcntl extension(Jason): 2002-08-22 04:20:10 +00:00
README Removed space type-o 2001-07-30 20:51:57 +00:00
test-pcntl.php @Made major improvents to the pcntl extension(Jason): 2002-08-22 04:20:10 +00:00

Process Control Module for PHP (pcntl)

This module will attempt to implement all features related to process spawning and
control (fork(), waitpid(), signal(), WIF's, etc). This is extremly experimental, 
with hope to become stable on most UNIX's. I greatly apreciate any feedback, fixes, 
and or suggestions on how to improve/better implement
this functionality.

Thanks,

Jason Greeme < jason@inetgurus.net / jason@php.net >