summaryrefslogtreecommitdiff
path: root/ext/pcntl
Commit message (Collapse)AuthorAgeFilesLines
* Added function pcntl_alarm().Edin Kadribasic2002-06-042-0/+15
| | | | | @- Added pctnl_alarm() function. (Edin)
* Fix invalid warning caused by bogus convert_to_* callsJason Greene2002-05-061-2/+3
| | | | | Fix possible invalid data in status for pcntl_waitpid()
* Fix type-o that broke ZTS buildJason Greene2002-05-061-4/+11
| | | | | Fix 3 nasty crash bugs that could occur if pcntl_exec's call to execve errored
* - Fix pcntl_waitpid() [Fixes #16766].Markus Fischer2002-04-231-18/+12
|
* - MFB (4_2_0)Jan Lehnardt2002-04-121-1/+1
|
* Remove already included fileJason Greene2002-03-171-1/+0
|
* - Fix some compiler warnings and errors.Markus Fischer2002-03-171-1/+2
|
* - WS and code style fix.Markus Fischer2002-03-162-141/+140
|
* - Some more TSRMLS fixes.Markus Fischer2002-03-161-1/+1
|
* php_new_extensionSascha Schumann2002-03-122-9/+1
|
* Maintain headers.Sebastian Bergmann2002-02-284-9/+8
|
* Modified the build system to make certain extensions (pcntl, ncurses,Edin Kadribasic2002-01-201-3/+2
| | | | | | | pcntl) only with cgi/cli sapi's. This was done by adding 3rd optional parameter to PHP_EXTENSION macro which should be set to "cli" if the extension only makes sense for that class of api's.
* use predefined function instead of hardcoded testHartmut Holzgraefe2002-01-041-3/+1
|
* proto fixHartmut Holzgraefe2002-01-041-1/+1
|
* Update headers.Sebastian Bergmann2001-12-114-4/+4
|
* Fix test when allow_call_time_pass_reference = Offfoobar2001-12-061-3/+3
|
* Unified the configure messages.foobar2001-11-301-1/+3
|
* Some protos fixed.Egon Schmid2001-11-081-6/+6
|
* - prototypesDerick Rethans2001-11-081-5/+6
| | | | | #- Thanks to Zak for pointing this out during his talk
* * zend_module_entry change: apino, debug and zts are moved first,Stig Bakken2001-10-111-1/+4
| | | | | | see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig)
* Add cleanup on an exec failureJason Greene2001-10-031-4/+8
| | | | | Remove debug comments
* @Added new function pcntl_exec, which behaves similar to execve.Jason Greene2001-09-302-0/+88
|
* Fix indentation of ./configure --helpSascha Schumann2001-09-191-2/+1
|
* Removed space type-oJason Greene2001-07-305-10/+11
| | | | | | | Fixed WS Added $Id$ tags Removed already completed TODO from README
* Fully implement new thread safe model.Jason Greene2001-07-302-21/+31
| | | | | Fix ws.
* Zend compatibility patchZeev Suraski2001-07-301-13/+16
|
* Zend compatibility patchZeev Suraski2001-07-301-8/+2
|
* Signal numbers are not uniform accross all platforms.Jason Greene2001-07-061-4/+13
| | | | | Modified test to use the constants unless a failure occurs.
* Fix proto's and some ws uglinessJason Greene2001-07-061-12/+12
|
* Added wait.h functionality to pcntlJason Greene2001-07-067-31/+219
| | | | | | Added tests for such functionality Removed bogus files
* no need to implement these functions, already in posix moduleJason Greene2001-07-041-1/+0
|
* Actually check for the needed system calls.Jason Greene2001-07-041-2/+7
| | | | | Currently require sigaction, fork, waitpit.
* *BSD doesn't have SIGPOLL or SIGPWRJason Greene2001-06-261-0/+4
|
* Fix casting wierdness that broke compiled code with Sun CC.Jason Greene2001-06-251-4/+4
| | | | | (Also easier to read)
* Make pcntl async safe by registering as a zend extension and grabing theJason Greene2001-06-193-10/+179
| | | | | | | | | 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.
* Adding some ifdefs for better platform compatibilityJason Greene2001-06-131-37/+43
|
* Remove bugus file.Jason Greene2001-06-121-7/+0
|
* @Added new experimental module pcntl (Process Control) (Jason)Jason Greene2001-06-1215-0/+500
Initial Import