summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg_wait.c
Commit message (Collapse)AuthorAgeFilesLines
* Improve SPL directory and stat() cache using zend_srting* instead of char*Dmitry Stogov2021-02-261-4/+4
|
* Use zend_string_equals API in a couple placesNikita Popov2020-07-031-1/+1
|
* Use separate typedef for bucket comparison functionNikita Popov2020-03-041-7/+3
| | | | | Avoid performing the same casting dance inside each sort compare function.
* Remove mention of PHP major version in Copyright headersGabriel Caruso2019-09-251-2/+0
| | | | Closes GH-4732.
* Fix strict aliasing violation in phpdbgNikita Popov2019-04-121-9/+13
| | | | | | By explicitly computing the message length from bytes. This also makes sure that the length is interpreted in an endianness-independent manner.
* Fix potentially uninitialized warnings in phpdbgNikita Popov2019-04-121-1/+3
|
* Remove yearly range from copyright noticeZeev Suraski2019-01-301-1/+1
|
* Use zval_ptr_dtor() imstead of zval_dtor()Dmitry Stogov2018-07-051-1/+1
|
* Replace legacy zval_dtor() by zval_ptr_dtor_nogc() or even more specialized ↵Dmitry Stogov2018-07-041-1/+1
| | | | | | | destructors. zval_dtor() doesn't make a lot of sense in PHP-7.* and it's used incorrectly in some places. Its occurances should be replaced by zval_ptr_dtor() or zval_ptr_dtor_nogc(), or even more specialized destructors.
* year++Xinchen Hui2018-01-021-1/+1
|
* Update copyright headers to 2017Sammy Kaye Powers2017-01-021-1/+1
|
* phpdbg: couple of network function return checks. PossibleDavid Carlier2016-09-041-2/+16
| | | | overflow when copy the socket_path configuration.
* Eliminate usages of _PP macrosNikita Popov2016-03-031-5/+0
| | | | | | | | | | | | | These are either in debug code (fix them), commented out (drop them) or in dead compatibility macros (drop them). One usage was in php_stream_get_from_zval(), which we have not used since at least PHP 5.2 and, judging from the fact that nobody complained about it causing compile errors in PHP 7, nobody else uses it either, so drop it. There are still remaining uses in mysqli embedded and odbc birdstep. These probably need to be dropped outright.
* Fix bug #71575 removing extra semicolons outside macrosJames Titcumb2016-03-031-1/+1
|
* Format string fixesNikita Popov2016-02-141-2/+2
| | | | | Conflicts: ext/pgsql/pgsql.c
* Happy new year (Update copyright to 2016)Lior Kaplan2016-01-011-1/+1
|
* Change array sorting implementation to avoid two level callbacks system.Dmitry Stogov2015-09-101-6/+4
| | | | Simplify zval comparion API.
* Use ZSTR_ API to access zend_string elements (this is just renaming without ↵Dmitry Stogov2015-06-301-1/+1
| | | | semantick changes).
* s/PHP Version 5/PHP Version 7/gLior Kaplan2015-03-131-1/+1
| | | | Follow up for d0cb7153
* Merged zend_array and HashTable into the single data structure.Dmitry Stogov2015-02-131-2/+2
| | | | | Now each HashTable is also zend_array, so it's refcounted and may be a subject for Copy on Write zend_array_dup() was changed to allocate and return HashTable, instead of taking preallocated HashTable as argument.
* bump yearXinchen Hui2015-01-151-1/+1
|
* Faster sorting algoXinchen Hui2015-01-141-2/+2
|
* first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-22/+22
|
* Merge branch 'PHP-5.6'Anatol Belski2014-10-291-0/+2
|\ | | | | | | | | | | | | | | | | | | | | * PHP-5.6: fix output globals importing export output globals use portable strndup implementation unix sockets aren't available on windows dll export APIs needed by phpdbg fix sapi/phpdbg/config.w32 Don't treat warnings as failures in the junit output
| * unix sockets aren't available on windowsAnatol Belski2014-10-291-0/+2
| |
* | Merge branch 'PHP-5.6'Remi Collet2014-10-291-1/+0
|\ \ | |/ | | | | | | * PHP-5.6: cleanup uneeded json
| * cleanup uneeded jsonRemi Collet2014-10-291-1/+0
| |
* | Merge remote-tracking branch 'origin/PHP-5.6'Bob Weinand2014-10-281-2/+0
|\ \ | |/
| * Merge phpdbg into PHP-5.6Bob Weinand2014-10-281-2/+0
| |
* | Merge remote-tracking branch 'origin/PHP-5.6'Bob Weinand2014-10-281-6/+7
|\ \ | |/ | | | | | | | | Conflicts: sapi/phpdbg/phpdbg_wait.c sapi/phpdbg/phpdbg_webdata_transfer.c
| * Merge phpdbg into PHP-5.6Bob Weinand2014-10-281-0/+2
| |
| * Merge ../phpdbg into PHP-5.6Bob Weinand2014-10-281-7/+8
| | | | | | | | | | Conflicts: sapi/phpdbg/config.m4
* | Made phpdbg compatible with new engineBob Weinand2014-10-241-104/+85
|/
* Merge phpdbg into PHP-5.6Bob Weinand2014-10-241-0/+419