summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg.c
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'PHP-7.0' into PHP-7.1Joe Watkins2017-02-271-1/+2
|\ | | | | | | | | * PHP-7.0: fix crash in phpdbg shutdown process when opcache is loaded
| * fix crash in phpdbg shutdown process when opcache is loadedJoe Watkins2017-02-271-1/+2
| |
| * Update copyright headers to 2017Sammy Kaye Powers2017-01-041-2/+2
| |
* | Update copyright headers to 2017Sammy Kaye Powers2017-01-041-2/+2
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Bob Weinand2016-12-221-1/+0
|\ \ | |/
* | Merge branch 'PHP-7.0' into PHP-7.1Bob Weinand2016-12-211-1/+1
|\ \ | |/
| * Fix issue with -- in phpdbg command lineBob Weinand2016-12-211-1/+1
| |
* | Fix segfault in ZTS mode when just printing and exiting in phpdbgBob Weinand2016-12-201-1/+1
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Nikita Popov2016-12-141-1/+1
|\ \ | |/
| * Partially fix bug #70492Nikita Popov2016-12-141-1/+1
| | | | | | | | The libmagic portion is missing.
* | Merge branch 'PHP-7.0' into PHP-7.1Bob Weinand2016-11-301-3/+1
|\ \ | |/
| * Fixed bug #73615 (phpdbg without option never load .phpdbginit at startup)Bob Weinand2016-11-301-3/+1
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Bob Weinand2016-11-201-1/+1
|\ \ | |/
| * Revert "Revert "Remove a few unused write warning""Bob Weinand2016-11-201-1/+1
| | | | | | | | | | | | This reverts commit ff5a65d26b139142c5e967582c369ef65b79adf8. (With zend_ prefix now)
* | Merge branch 'PHP-7.0' into PHP-7.1Bob Weinand2016-11-201-0/+1
|\ \ | |/
| * Remove a few unused write warning (backport from master, oops)sBob Weinand2016-11-201-0/+1
| |
| * make it possible to show specific help pages without interactive sessionJoe Watkins2016-11-201-1/+1
| |
* | make it possible to show specific help pages without interactive sessionJoe Watkins2016-11-201-1/+1
| |
* | Fix phpdbg ZTS shutdown with USE_ZEND_ALLOCBob Weinand2016-11-131-7/+13
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2016-10-271-0/+2
|\ \ | |/ | | | | | | * PHP-7.0: yet another uninitialized pointer
| * yet another uninitialized pointerAnatol Belski2016-10-271-0/+2
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2016-10-271-0/+2
|\ \ | |/ | | | | | | * PHP-7.0: fix uninitialized pointer
| * fix uninitialized pointerAnatol Belski2016-10-271-0/+2
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Bob Weinand2016-10-161-35/+49
|\ \ | |/
| * Fixed bug #71234 (INI files are loaded even invoked as phpdbg -n --version)Bob Weinand2016-10-161-33/+49
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Bob Weinand2016-10-161-0/+4
|\ \ | |/
| * Fixed bug #70776 (Simple SIGINT does not have any effect)Bob Weinand2016-10-161-0/+4
| |
| * Ignore non-executable opcodes in line mode of phpdbg_end_oplog()Bob Weinand2016-10-131-9/+19
| |
| * Update NEWSBob Weinand2016-10-121-6/+6
| | | | | | | | Also add missing include.inc test file
| * Fix accidental PHPDBG_ABI breakBob Weinand2016-10-121-1/+1
| |
| * Add stdin command and -s command line parameter to phpdbgBob Weinand2016-10-121-12/+67
| | | | | | | | | | | | | | This allows reading the initial script file from stdin instead of being forced to put the script into a file in order to run it with phpdbg. Especially important for programmatic execution of phpdbg. Also adding tests/include_once.phpt and tests/set_exception_handler.phpt as I seem to have forgotten to git add them sometime long ago...
* | Ignore non-executable opcodes in line mode of phpdbg_end_oplog()Bob Weinand2016-10-141-9/+19
| | | | | | | | (cherry picked from commit d14498a475642642cfeee21630058941c33a6dfb)
* | Merge remote-tracking branch 'origin/PHP-7.0' into PHP-7.1Bob Weinand2016-10-141-6/+6
| | | | | | | | (cherry picked from commit 457e68626257e8b5c891f2edf20d31907080063a)
* | Fix accidental PHPDBG_ABI breakBob Weinand2016-10-141-1/+1
| | | | | | | | (cherry picked from commit 671d8054f85d2dec1a00201a73ab792847c13919)
* | Merge branch 'PHP-7.0' into PHP-7.1Bob Weinand2016-10-141-12/+68
| | | | | | | | (cherry picked from commit 37ae5f3931b60c55e5004b6da912c4a957bca274)
* | Use better fix for preventing too early freeing of interned stringsBob Weinand2016-10-061-1/+5
| | | | | | | | Works also with opcache now - just prevent zend_interned_strings_restore completely - zend_interned_strings_dtor will take care as phpdbg only ever uses one single request cycle per module cycle
* | Merge branch 'PHP-7.0' into PHP-7.1Bob Weinand2016-10-031-1/+1
|\ \ | |/
| * Fix crash on Linux due to double fclose()Bob Weinand2016-10-031-1/+1
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Bob Weinand2016-10-021-5/+21
|\ \ | |/
| * Fix run command args passing when inmidst executionBob Weinand2016-10-021-5/+21
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Bob Weinand2016-10-011-0/+38
|\ \ | |/
| * Add proper escape sequences and reading stdin from file in phpdbg run commandBob Weinand2016-10-011-0/+38
| |
| * MFH: Fixed fd leak (the origin commit can not be cherry-picked)Xinchen Hui2016-06-281-1/+4
| |
* | Remove bogus zend_signal_shutdown symbol from headerBob Weinand2016-07-131-7/+6
| |
* | Cleanup zend_/signal usage in phpdbg.cBob Weinand2016-07-131-20/+7
| |
* | Fix phpdbg ZTS watchpoint+shutdown sequences & opcache+watchpointsBob Weinand2016-07-121-155/+173
| |
* | Rewrite watchpoints to be much more stableBob Weinand2016-07-111-78/+97
| | | | | | | | | | | | | | | | This mainly involves a separate abstraction layer for elements (e.g. $a->b) and watchpoints (on pointer of the Bucket for example). Also better comparison handling (value backup vs. page dumps). It is not yet finished (there are sometimes false positives announced and names not yet perfect), but the functionality is working and not crashing as far as I have tested. Future scope is also relative watchpoints, e.g. "w $this->val expression()" which does not have the symbol tables as basis, but the value (in this example: return value of expression()) as basis.
* | Pass error severity to SAPI modules and raise corresponding error level in ↵Martin Vobruba2016-07-111-1/+1
| | | | | | | | Apache
* | couple of resource leaks fixes and use after free'sDavid Carlier2016-06-271-1/+4
| |
* | Zend signals should be installed after request startup (or regular signals ↵Dmitry Stogov2016-06-201-8/+8
| | | | | | | | may be installed before zend_signal_startup)