diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2015-04-20 12:22:55 +0200 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2015-04-20 12:23:11 +0200 |
commit | 1a249bd6745131cc68f72b2cfc9b8ca789b221ee (patch) | |
tree | 5f8057068b2e548adf6ae1bec3cd44a2eebdec30 /sapi/phpdbg/phpdbg.h | |
parent | 1c3b99c4ff20bdce1c589318c39e7fd20d6f9ee2 (diff) | |
download | php-git-1a249bd6745131cc68f72b2cfc9b8ca789b221ee.tar.gz |
Shorten opline dump lines and show literals
Diffstat (limited to 'sapi/phpdbg/phpdbg.h')
-rw-r--r-- | sapi/phpdbg/phpdbg.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sapi/phpdbg/phpdbg.h b/sapi/phpdbg/phpdbg.h index c636a7c791..c76e460495 100644 --- a/sapi/phpdbg/phpdbg.h +++ b/sapi/phpdbg/phpdbg.h @@ -187,10 +187,11 @@ int phpdbg_do_parse(phpdbg_param_t *stack, char *input); #define PHPDBG_WRITE_XML (1ULL<<31) #define PHPDBG_SHOW_REFCOUNTS (1ULL<<32) +#define PHPDBG_PRINT_OPLINE_ADDR (1ULL<<33) -#define PHPDBG_IN_SIGNAL_HANDLER (1ULL<<33) +#define PHPDBG_IN_SIGNAL_HANDLER (1ULL<<34) -#define PHPDBG_DISCARD_OUTPUT (1ULL<<34) +#define PHPDBG_DISCARD_OUTPUT (1ULL<<35) #define PHPDBG_SEEK_MASK (PHPDBG_IN_UNTIL | PHPDBG_IN_FINISH | PHPDBG_IN_LEAVE) #define PHPDBG_BP_RESOLVE_MASK (PHPDBG_HAS_FUNCTION_OPLINE_BP | PHPDBG_HAS_METHOD_OPLINE_BP | PHPDBG_HAS_FILE_OPLINE_BP) |