summaryrefslogtreecommitdiff
path: root/ext/pcntl/php_pcntl.h
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'RELEASE_0_9b'.RELEASE_0_9bSVN Migration2003-05-141-81/+0
|
* Added pcntl_setpriority & pcntl_getpriority(). These functions can be usedIlia Alshanetsky2003-02-181-0/+2
| | | | | to fetch and alter the priority of a process.
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* @Made major improvents to the pcntl extension(Jason):Jason Greene2002-08-221-8/+2
| | | | | | | | | | | | | | @ - 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
* Added function pcntl_alarm().Edin Kadribasic2002-06-041-0/+1
| | | | | @- Added pctnl_alarm() function. (Edin)
* - WS and code style fix.Markus Fischer2002-03-161-1/+1
|
* Maintain headers.Sebastian Bergmann2002-02-281-2/+2
|
* Update headers.Sebastian Bergmann2001-12-111-1/+1
|
* @Added new function pcntl_exec, which behaves similar to execve.Jason Greene2001-09-301-0/+1
|
* Removed space type-oJason Greene2001-07-301-2/+4
| | | | | | | Fixed WS Added $Id$ tags Removed already completed TODO from README
* Fully implement new thread safe model.Jason Greene2001-07-301-5/+2
| | | | | Fix ws.
* Added wait.h functionality to pcntlJason Greene2001-07-061-0/+7
| | | | | | Added tests for such functionality Removed bogus files
* Make pcntl async safe by registering as a zend extension and grabing theJason Greene2001-06-191-1/+13
| | | | | | | | | statement handler. There could possibly be a more atomic hook in the future. Also added simple TODO section to README. NOTE: sleep() grabs SIGALRM on solaris, so test-pcntl.php's alarm_handle function will not catch.
* @Added new experimental module pcntl (Process Control) (Jason)Jason Greene2001-06-121-0/+65
Initial Import