summaryrefslogtreecommitdiff
path: root/ext/posix
Commit message (Collapse)AuthorAgeFilesLines
* Fix #72948: Uncatchable "Catchable" fatal error for class to string conversionsChristoph M. Becker2016-09-036-6/+6
| | | | | | | E_RECOVERABLE errors are reported as "Catchable fatal error". This is misleading, because they actually can't be caught via try-catch statements. Therefore we change the wording to "Recoverable fatal error" as suggested by Nikita.
* Merge branch 'PHP-5.6' into PHP-7.0Nikita Popov2016-07-301-1/+1
|\
| * Revert "Fixed bug #71219"Nikita Popov2016-07-301-1/+1
| | | | | | | | | | | | | | | | This reverts commit 14d674442ef86ad4e862228a1ff5ecd322ae7759. I misread the discussion on the bug -- this is not the correct fix. However the other proposed fix does not work either, so just reverting for now.
* | Merge branch 'PHP-5.6' into PHP-7.0Nikita Popov2016-07-301-1/+1
|\ \ | |/
| * Fixed bug #71219Nikita Popov2016-07-301-1/+1
| |
* | Fix posix buildNikita Popov2016-05-011-1/+1
| |
* | Fixed bug #72133 (php_posix_group_to_array crashes if gr_passwd is NULL)Xinchen Hui2016-05-011-2/+6
| |
* | Merge branch 'PHP-5.6' into PHP-7.0Lior Kaplan2016-01-012-2/+2
|\ \ | |/ | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016)
| * Happy new year (Update copyright to 2016)Lior Kaplan2016-01-012-2/+2
| |
| * bump yearXinchen Hui2015-01-152-2/+2
| |
* | Fix posix_setrlimit segfaultNikita Popov2015-07-091-2/+1
| |
* | Fix posix_setrlimit() to use int as values instead of strings.Magnus Määttä2015-07-091-15/+8
| | | | | | | | Add constant for unlimited (POSIX_RLIMIT_INFINITY).
* | Add posix_setrlimit() FR #54603Magnus Määttä2015-07-084-2/+120
| |
* | cleanup mod version macros and mod defs, round xAnatol Belski2015-03-232-1/+4
| |
* | bump yearXinchen Hui2015-01-152-2/+2
| |
* | trailing whitespace removalStanislav Malyshev2015-01-102-31/+31
| |
* | Use "float" and "integer" in typehint and zpp errorsAndrea Faulds2014-12-2125-106/+106
| |
* | first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-34/+34
| |
* | skip posix 32-bitAndrea Faulds2014-11-289-4/+13
| |
* | Fixes posix testsFlorian MARGAINE2014-11-099-1/+25
| |
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-192-2/+2
| |
* | first show to make 's' work with size_tAnatol Belski2014-08-271-6/+6
| |
* | master renames phase 7PRE_AST_MERGEAnatol Belski2014-08-251-2/+2
| |
* | master renames phase 1Anatol Belski2014-08-251-61/+61
| |
* | ported ext/posixAnatol Belski2014-08-191-26/+26
| |
* | basic macro replacements, all at onceAnatol Belski2014-08-191-37/+37
| |
* | Fixed compatibilityDmitry Stogov2014-07-221-1/+2
| |
* | added support for ext/posixDmitry Stogov2014-05-061-21/+20
| |
* | Merge mainstream 'master' branch into refactoringDmitry Stogov2014-04-261-2/+2
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | During merge I had to revert: Nikita's patch for php_splice() (it probably needs to be applyed again) Bob Weinand's patches related to constant expression handling (we need to review them carefully) I also reverted all our attempts to support sapi/phpdbg (we didn't test it anyway) Conflicts: Zend/zend.h Zend/zend_API.c Zend/zend_ast.c Zend/zend_compile.c Zend/zend_compile.h Zend/zend_constants.c Zend/zend_exceptions.c Zend/zend_execute.c Zend/zend_execute.h Zend/zend_execute_API.c Zend/zend_hash.c Zend/zend_highlight.c Zend/zend_language_parser.y Zend/zend_language_scanner.c Zend/zend_language_scanner_defs.h Zend/zend_variables.c Zend/zend_vm_def.h Zend/zend_vm_execute.h ext/date/php_date.c ext/dom/documenttype.c ext/hash/hash.c ext/iconv/iconv.c ext/mbstring/tests/zend_multibyte-10.phpt ext/mbstring/tests/zend_multibyte-11.phpt ext/mbstring/tests/zend_multibyte-12.phpt ext/mysql/php_mysql.c ext/mysqli/mysqli.c ext/mysqlnd/mysqlnd_reverse_api.c ext/mysqlnd/php_mysqlnd.c ext/opcache/ZendAccelerator.c ext/opcache/zend_accelerator_util_funcs.c ext/opcache/zend_persist.c ext/opcache/zend_persist_calc.c ext/pcre/php_pcre.c ext/pdo/pdo_dbh.c ext/pdo/pdo_stmt.c ext/pdo_pgsql/pgsql_driver.c ext/pgsql/pgsql.c ext/reflection/php_reflection.c ext/session/session.c ext/spl/spl_array.c ext/spl/spl_observer.c ext/standard/array.c ext/standard/basic_functions.c ext/standard/html.c ext/standard/mail.c ext/standard/php_array.h ext/standard/proc_open.c ext/standard/streamsfuncs.c ext/standard/user_filters.c ext/standard/var_unserializer.c ext/standard/var_unserializer.re main/php_variables.c sapi/phpdbg/phpdbg.c sapi/phpdbg/phpdbg_bp.c sapi/phpdbg/phpdbg_frame.c sapi/phpdbg/phpdbg_help.c sapi/phpdbg/phpdbg_list.c sapi/phpdbg/phpdbg_print.c sapi/phpdbg/phpdbg_prompt.c
| * Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2014-04-141-2/+2
| |\ | | | | | | | | | | | | * PHP-5.4: Fix test - on CI somebody could create a process in the meantime
| | * Fix test - on CI somebody could create a process in the meantimeStanislav Malyshev2014-04-141-2/+2
| | |
| | * Bump yearXinchen Hui2014-01-032-2/+2
| | |
| * | Bump yearXinchen Hui2014-01-032-2/+2
| | |
* | | Cleanup (1-st round)Dmitry Stogov2014-04-151-16/+16
| | |
* | | Bump yearXinchen Hui2014-01-032-2/+2
|/ /
* | These getpwnam('') tests are silly and not portableRasmus Lerdorf2013-10-204-84/+0
|/
* non living code related typo fixesVeres Lajos2013-08-041-1/+1
|
* Merge branch 'pull-request/341'Stanislav Malyshev2013-06-101-1/+1
| | | | | * pull-request/341: (23 commits) typofixes
* Happy New YearXinchen Hui2013-01-012-2/+2
|
* Merge branch 'PHP-5.3' into PHP-5.4David Soria Parra2012-06-101-0/+15
|\ | | | | | | | | | | | | By Stanislav Malyshev (1) and michelangelo (1) * PHP-5.3: Adding a test for ext/posix/tests/posix_getegid_basic.phpt typo
| * Adding a test for ext/posix/tests/posix_getegid_basic.phptmichelangelo2012-06-101-0/+15
| |
* | Merge branch 'PHP-5.3' into PHP-5.4zoe slattery2012-05-151-1/+0
|\ \ | | | | | | | | | | | | * PHP-5.3: Small fixes to tests, see #62022
| * | Small fixes to tests, see #62022zoe slattery2012-05-151-1/+0
| |/
* | Merge branch 'PHP-5.3' into PHP-5.4David Soria Parra2012-03-201-1/+1
|\ \ | |/ | | | | | | | | | | | | | | * PHP-5.3: Replace $Revision$ with $Id$ in keyword expansion enable files Enable $Id$ expansion for files with the $Revision$ keyword Conflicts: ext/mysqlnd/mysqlnd.h
| * Replace $Revision$ with $Id$ in keyword expansion enable filesDavid Soria Parra2012-03-201-1/+1
| |
| * - Year++Felipe Pena2012-01-012-2/+2
| |
| * Fixing SKIPIFUlf Wendel2011-09-061-1/+1
| |
| * Fixing SKIPIFUlf Wendel2011-09-061-1/+1
| |
| * - add skipifPierre Joye2011-09-068-0/+48
| |
| * - Make usage of new PHP_FE_END macroFelipe Pena2011-07-251-1/+1
| |