summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg_cmd.c
Commit message (Collapse)AuthorAgeFilesLines
* Replace zend_bool uses with boolNikita Popov2021-01-151-4/+4
| | | | | | | We're starting to see a mix between uses of zend_bool and bool. Replace all usages with the standard bool type everywhere. Of course, zend_bool is retained as an alias.
* Constify char * arguments of APIstwosee2020-06-081-13/+7
| | | | Closes GH-5676.
* Merge branch 'PHP-7.4'Christoph M. Becker2020-05-261-1/+1
|\ | | | | | | | | | | | | | | * PHP-7.4: Enable phpdbg tests on AppVeyor Make phpdbg test portable Fix several mostly Windows related phpdbg bugs Fix #73926: phpdbg will not accept input on restart execution
| * Fix #73926: phpdbg will not accept input on restart executionChristoph M. Becker2020-05-261-1/+1
| | | | | | | | We are more liberal, and accept Windows line endings (CRLF) as well.
* | Remove some uses of zend_inline_hash_funcNikita Popov2020-05-151-7/+7
| | | | | | | | There's no need to force-inline the hashing for all of these.
* | Remove mention of PHP major version in Copyright headersGabriel Caruso2019-09-251-2/+0
|/ | | | Closes GH-4732.
* Merge branch 'PHP-7.3' into PHP-7.4Joe Watkins2019-03-271-8/+3
|\ | | | | | | | | * PHP-7.3: Fix #77805 phpdbg build fails when readline is shared
| * Fix #77805 phpdbg build fails when readline is sharedJoe Watkins2019-03-271-4/+3
| |
| * year++Xinchen Hui2018-01-021-1/+1
| |
* | Remove legacy AC_CHECK_TYPE calls for uint and ulongPeter Kokot2019-03-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The AC_CHECK_TYPE was refactored in more recent versions of Autoconf and the call with two arguments is obsolete and not recommended anymore. This patch also refactors some leftovers of using ulong and uint which are not standard nor common usages of types in C. The ulong can be used as zend_ulong and uint usage is actually `unsigned int`. The usage of HAVE_ULONG removed since it is not used in current code base. Legacy edgecase for some legacy HPUX systems removed: - sys/stream.h header is not checked and the HAVE_SYS_STREAM_H is not defined with current build system. - flags are unsigned int - max_allowed_packet changed to unsigned int
* | Remove yearly range from copyright noticeZeev Suraski2019-01-301-1/+1
| |
* | Fix some misspellingsGabriel Caruso2018-08-121-1/+1
| |
* | year++Xinchen Hui2018-01-021-1/+1
| |
* | fix constant defined undefined behavior warningdcarlier2017-11-241-1/+5
|/
* Update copyright headers to 2017Sammy Kaye Powers2017-01-021-1/+1
|
* Fix bug #71575 removing extra semicolons outside macrosJames Titcumb2016-03-031-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
| |
| * go back with phpdbg to the state of 5.6.3, reverting the controversial ↵Ferenc Kovacs2014-11-261-166/+161
| | | | | | | | commits(remote debugging/xml protocol)
* | Add eventual escaping for phpdbg argumentsBob Weinand2015-09-181-2/+3
| |
* | Add # delimiter to phpdbg commandsBob Weinand2015-09-171-19/+48
| |
* | Fix issues with phpdbg SIGINT handlerBob Weinand2015-08-211-8/+6
| | | | | | | | Also fix valgrind warnings in allocator when not using mmap()ed memory
* | Fix further leaksBob Weinand2015-08-041-0/+4
| |
* | Fix a few valgrind errors in phpdbgBob Weinand2015-08-031-8/+12
| |
* | Remove -Wunused-result warningsBob Weinand2015-07-271-8/+8
| |
* | fix printf formatAnatol Belski2015-07-241-3/+3
| |
* | Cleanup shutdown, enable proper memory leak displayingBob Weinand2015-07-241-0/+3
| | | | | | | | phpdbg should not memory leak...
* | Fix readline/libedit buildBob Weinand2015-07-201-4/+2
| |
* | Do not use readline when not having a ttyBob Weinand2015-07-201-1/+1
| | | | | | | | This is important for e.g. run-tests.php
* | Remove dead goto label in phpdbg_cmd.cNikita Popov2015-07-171-1/+0
| |
* | Working fix for ctrl+d on readline/libeditBob Weinand2015-07-081-5/+2
| |
* | Properly exit on EOF on stdin in readline modeBob Weinand2015-07-071-4/+8
| |
* | s/PHP Version 5/PHP Version 7/gLior Kaplan2015-03-131-1/+1
| | | | | | | | Follow up for d0cb7153
* | Fixed compile warningsWei Dai2015-03-091-2/+2
| |
* | bump yearXinchen Hui2015-01-151-1/+1
| |
* | trailing whitespace removalStanislav Malyshev2015-01-101-1/+1
| |
* | first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-33/+33
| |
* | Merge remote-tracking branch 'origin/PHP-5.6'Bob Weinand2014-10-271-56/+26
|\ \ | |/ | | | | | | | | | | | | | | | | Conflicts: sapi/phpdbg/phpdbg.c sapi/phpdbg/phpdbg_bp.c sapi/phpdbg/phpdbg_list.c sapi/phpdbg/phpdbg_parser.c sapi/phpdbg/phpdbg_parser.h sapi/phpdbg/phpdbg_prompt.c
| * Stabilize execution, always run destructors and extended file breakpointsBob Weinand2014-10-271-1/+1
| |
| * remove dodgy param parser, bring userland breakpoint api inline with PHP7krakjoe2014-10-271-73/+0
| |
| * Add question to reset execution in run/exec/cleanBob Weinand2014-10-271-56/+26
| |
* | actually remove thiskrakjoe2014-10-261-73/+0
| |
* | Made phpdbg compatible with new engineBob Weinand2014-10-241-184/+199
|\ \ | |/
| * Merge phpdbg into PHP-5.6Bob Weinand2014-10-241-153/+188
| |
| * Fix https://github.com/krakjoe/phpdbg/issues/91Remi Collet2014-06-231-3/+3
| | | | | | | | | | | | Enable edit feature when build with libedit. Notice: coloured prompt only enable with READLINE
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
| |
* | master renames phase 2Anatol Belski2014-08-251-1/+1
| |
* | Fix https://github.com/krakjoe/phpdbg/issues/91Remi Collet2014-06-231-3/+3
|/ | | | | | Enable edit feature when build with libedit. Notice: coloured prompt only enable with READLINE
* Merge sapi/phpdbg into PHP-5.6Bob Weinand2014-04-211-237/+437
|