summaryrefslogtreecommitdiff
path: root/ext/pcntl/php_pcntl.h
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers to 2017Sammy Kaye Powers2017-01-041-1/+1
|
* Merge branch 'PHP-5.6' into PHP-7.0Lior Kaplan2016-01-011-1/+1
|\ | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016)
| * Happy new year (Update copyright to 2016)Lior Kaplan2016-01-011-1/+1
| |
| * bump yearXinchen Hui2015-01-151-1/+1
| |
* | Fixed bug #70386 Can't compile on NetBSD because of missing WCONTINUEDMatteo Beccati2015-08-291-1/+3
| | | | | | | | since 90114a3e93f5209b3d880d154fdb61d3d0c67185
* | cleanup mod version macros, round 3Anatol Belski2015-03-231-0/+3
| |
* | Add wifcontinued and wcontinued for pcntljulien.pons2015-03-171-0/+5
| |
* | bump yearXinchen Hui2015-01-151-1/+1
| |
* | Merge branch 'PHP-5.6'Julien Pauli2014-12-121-0/+1
|\ \ | |/ | | | | | | * PHP-5.6: pcntl_signal_dispatch: Speed up by preventing system calls when unnecessary
| * pcntl_signal_dispatch: Speed up by preventing system calls when unnecessaryJille Timmermans2014-12-121-0/+1
| |
| * Bump yearXinchen Hui2014-01-031-1/+1
| |
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
| |
* | master renames phase 1Anatol Belski2014-08-251-2/+2
| |
* | ported pcntlAnatol Belski2014-08-191-1/+1
| |
* | basic macro replacements, all at onceAnatol Belski2014-08-191-1/+1
| |
* | Bump yearXinchen Hui2014-01-031-1/+1
|/
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* Fix bug #52173 (ext/pcntl doesn't store/report errors) (patchArnaud Le Blanc2010-11-011-0/+5
| | | | | by nick dot telford at gmail dot com)
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* MFHJani Taskinen2008-08-051-3/+0
|
* MFH: Added pcntl_sigwaitinfo(), pcntl_sigtimedwait() and pcntl_sigprocmask()Arnaud Le Blanc2008-07-291-0/+7
| | | | | | | [DOC] pcntl_sigprocmask() allows to block signals. pcntl_sigwaitinfo() allows to fetch blocked signals or signals delivered while pcntl_sigwaitinfo() is running. pcntl_sigtimedwait() is pcntl_sigwaitinfo() with a timeout.
* MFH: Added pcntl_signal_dispatch()Arnaud Le Blanc2008-07-291-0/+1
| | | | | | | [DOC] pcntl_signal_dispatch() allows to dispatch pending signals to registered signal handler functions on-demand. This allows to use pcntl_signal() without ticks.
* remove unused PHP_EXTNAME_API macros.Nuno Lopes2008-01-031-6/+0
| | | | | #in preparation for the gcc 4 visibility patch
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* MFB: Fix for #32974Wez Furlong2005-05-071-2/+7
|
* - Fixed bug #29873 (No defines around pcntl_*priority definitions).Derick Rethans2004-08-281-0/+4
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-2/+2
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* Added pcntl_wait, a wraspper around wait()/wait3()George Schlossnagle2003-10-281-0/+1
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* Fixed compiler warnings.Ilia Alshanetsky2003-05-291-4/+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