summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Use uint64_t for flags (warning)Bob Weinand2016-01-231-1/+1
|
* Merge branch 'PHP-5.6' into PHP-7.0Lior Kaplan2016-01-011-2/+2
|\ | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016)
| * Happy new year (Update copyright to 2016)Lior Kaplan2016-01-011-2/+2
| |
| * bump yearXinchen Hui2015-01-151-2/+2
| |
| * typo fixFerenc Kovacs2014-11-261-1/+1
| |
| * go back with phpdbg to the state of 5.6.3, reverting the controversial ↵Ferenc Kovacs2014-11-261-421/+316
| | | | | | | | commits(remote debugging/xml protocol)
| * typo fixes - https://github.com/vlajos/misspell_fixerVeres Lajos2014-11-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ext/ftp/ftp.h ext/pcre/pcrelib/pcre_printint.c ext/pcre/pcrelib/sljit/sljitLir.c ext/pcre/pcrelib/sljit/sljitLir.h ext/pcre/pcrelib/sljit/sljitNativeARM_32.c ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c ext/pgsql/pgsql.c ext/phar/func_interceptors.c ext/soap/soap.c ext/standard/image.c
| * Temporarily disable wait/xml protocol...Bob Weinand2014-10-301-0/+4
| |
* | Unused value casting should be `void`Reeze Xia2015-12-121-1/+1
| |
* | standard tsrm usage for sevenJoe Watkins2015-12-061-7/+7
| |
* | Output stderr on real stderr in phpdbgBob Weinand2015-11-231-1/+1
| |
* | Exempt paging from -qrr modeBob Weinand2015-10-201-1/+1
| |
* | - Implemented output pagingFelipe Pena2015-10-181-0/+1
| |
* | Fix parse errors in -rr modeBob Weinand2015-10-021-1/+3
| |
* | Do not display memory leaks on fatalBob Weinand2015-10-021-3/+7
| |
* | Do not include zend_verify_return_type in executable ops (phpdbg)Bob Weinand2015-10-021-4/+4
| |
* | Fix/improve zpp usageNikita Popov2015-10-021-6/+6
| | | | | | | | | | | | The ext/interbase changes are done blindly, fingers crossed. Some of these are bug fixes, some make zpp usage more idiomatic.
* | fix phpdbg's -h switchAnatol Belski2015-09-271-0/+4
| | | | | | | | | | The help functionality needs a correct stdout fd, so pre setup it for the only case.
* | Fixed bug #70531 (-rr should not fallback to interactive mode in phpdbg)Bob Weinand2015-09-231-0/+5
| |
* | Always properly show exit status in phpdbgBob Weinand2015-09-191-1/+6
| | | | | | | | Especially when it is only set after main run (e.g. register_shutdown_function)
* | Fix oplog...Bob Weinand2015-09-191-0/+1
| |
* | Add # delimiter to phpdbg commandsBob Weinand2015-09-171-0/+10
| |
* | fix zend signal and tsrm compatzend-signal-ztsJoe Watkins2015-09-011-0/+4
| |
* | Respect exit status for -rr option with phpdbgBob Weinand2015-08-301-1/+4
| |
* | Fixed printingXinchen Hui2015-08-271-2/+2
| |
* | Fix phpdbg_break_next() and add testBob Weinand2015-08-231-3/+14
| |
* | Fix issues with phpdbg SIGINT handlerBob Weinand2015-08-211-14/+22
| | | | | | | | Also fix valgrind warnings in allocator when not using mmap()ed memory
* | Reimplemented ability to get debug info (C source file and line number) in ↵Dmitry Stogov2015-08-111-48/+13
| | | | | | | | phpdbg without hacks and ABI breaks.
* | Fix further leaksBob Weinand2015-08-041-0/+6
| |
* | Fix valgrind errors in phpdbgBob Weinand2015-08-041-9/+3
| | | | | | | | | | | | | | Revert "We cannot safely assume that all op array will be refcount 0 after execution" This reverts commit b6936adb58288a0606ed847802d9226cddb41e2b. This change turns out to not have been a clever idea and was causing more weirdness than it helped...
* | Do not mark automatic return 1; as executableBob Weinand2015-07-311-1/+3
| |
* | Fix oplog trace with already freed closuresBob Weinand2015-07-311-8/+7
| |
* | Remove -Wunused-result warningsBob Weinand2015-07-271-1/+1
| |
* | Fix bug #70138 (difference between gcc and clang)Bob Weinand2015-07-261-6/+13
| |
* | Fix leaks from bug #70138Bob Weinand2015-07-261-5/+10
| |
* | Fix op_arrays with opcacheBob Weinand2015-07-251-0/+2
| |
* | Revert "avoid pointer truncation"Anatol Belski2015-07-241-1/+1
| | | | | | | | This reverts commit 5334d53499b2d7f2a3281f5fbc6b0963ae61aaad.
* | avoid pointer truncationAnatol Belski2015-07-241-1/+1
| |
* | fix scopeAnatol Belski2015-07-241-1/+1
| |
* | Fix non-debug buildBob Weinand2015-07-241-9/+4
| |
* | Cleanup shutdown, enable proper memory leak displayingBob Weinand2015-07-241-116/+103
| | | | | | | | phpdbg should not memory leak...
* | Fix build failure for non-osx *nixesBob Weinand2015-07-231-2/+2
| |
* | Fix valgrind warning with sigactionBob Weinand2015-07-231-1/+2
| |
* | Add phpdbg_get_executable() (gets executable ops/lines)Bob Weinand2015-07-221-30/+119
| |
* | Add -e (ZEND_EXT_* generation) option to phpdbgBob Weinand2015-07-221-0/+10
| |
* | Do not use readline when not having a ttyBob Weinand2015-07-201-1/+1
| | | | | | | | This is important for e.g. run-tests.php
* | Add show_unexecuted option to phpdbg_end_oplog()Bob Weinand2015-07-201-10/+71
| |
* | Preserve argv consistency over multiple runsBob Weinand2015-07-201-15/+15
| |
* | Do never clean stdin buffer awayBob Weinand2015-07-201-0/+2
| |
* | Do not show "Script ended normally" upon forced rerunBob Weinand2015-07-201-2/+4
| |