summaryrefslogtreecommitdiff
path: root/phpdbg.h
diff options
context:
space:
mode:
authorkrakjoe <joe.watkins@live.co.uk>2013-11-26 16:00:28 +0000
committerkrakjoe <joe.watkins@live.co.uk>2013-11-26 16:00:28 +0000
commit969e659c4abb128017919f327aa127db36f49796 (patch)
treec3f6326a3e9e48de55ed508be049bfb918fb3843 /phpdbg.h
parent6d95449e0a0f5ceb326a6fe7df9c2764ca4722e5 (diff)
parent6ba73338dd34a2a80e0dd25ca333bfc0b859a930 (diff)
downloadphp-git-969e659c4abb128017919f327aa127db36f49796.tar.gz
Merge branch 'master' of https://github.com/krakjoe/phpdbg
Diffstat (limited to 'phpdbg.h')
-rw-r--r--phpdbg.h58
1 files changed, 29 insertions, 29 deletions
diff --git a/phpdbg.h b/phpdbg.h
index 7046ec3d00..b045d85fe0 100644
--- a/phpdbg.h
+++ b/phpdbg.h
@@ -106,22 +106,22 @@
#define PHPDBG_IS_COLOURED (1<<12)
#define PHPDBG_IS_CLEANING (1<<13)
-#define PHPDBG_IN_UNTIL (1<<14)
-#define PHPDBG_IN_FINISH (1<<15)
-#define PHPDBG_IN_LEAVE (1<<16)
-#define PHPDBG_SEEK_MASK (PHPDBG_IN_UNTIL|PHPDBG_IN_FINISH|PHPDBG_IN_LEAVE)
-
-#define PHPDBG_IS_REGISTERED (1<<17)
-#define PHPDBG_IS_STEPONEVAL (1<<18)
-#define PHPDBG_IS_INITIALIZING (1<<19)
+#define PHPDBG_IN_UNTIL (1<<14)
+#define PHPDBG_IN_FINISH (1<<15)
+#define PHPDBG_IN_LEAVE (1<<16)
+#define PHPDBG_SEEK_MASK (PHPDBG_IN_UNTIL|PHPDBG_IN_FINISH|PHPDBG_IN_LEAVE)
+
+#define PHPDBG_IS_REGISTERED (1<<17)
+#define PHPDBG_IS_STEPONEVAL (1<<18)
+#define PHPDBG_IS_INITIALIZING (1<<19)
#define PHPDBG_IS_SIGNALED (1<<20)
-#define PHPDBG_IS_INTERACTIVE (1<<21)
+#define PHPDBG_IS_INTERACTIVE (1<<21)
#define PHPDBG_IS_BP_ENABLED (1<<22)
#ifndef _WIN32
-# define PHPDBG_DEFAULT_FLAGS (PHPDBG_IS_QUIET|PHPDBG_IS_COLOURED|PHPDBG_IS_BP_ENABLED)
+# define PHPDBG_DEFAULT_FLAGS (PHPDBG_IS_QUIET|PHPDBG_IS_COLOURED|PHPDBG_IS_BP_ENABLED)
#else
-# define PHPDBG_DEFAULT_FLAGS (PHPDBG_IS_QUIET|PHPDBG_IS_BP_ENABLED)
+# define PHPDBG_DEFAULT_FLAGS (PHPDBG_IS_QUIET|PHPDBG_IS_BP_ENABLED)
#endif /* }}} */
/* {{{ strings */
@@ -138,29 +138,29 @@
/* {{{ structs */
ZEND_BEGIN_MODULE_GLOBALS(phpdbg)
- HashTable bp[PHPDBG_BREAK_TABLES]; /* break points */
- HashTable registered; /* registered */
- HashTable seek; /* seek oplines */
- phpdbg_frame_t frame; /* frame */
+ HashTable bp[PHPDBG_BREAK_TABLES]; /* break points */
+ HashTable registered; /* registered */
+ HashTable seek; /* seek oplines */
+ phpdbg_frame_t frame; /* frame */
- char *exec; /* file to execute */
- size_t exec_len; /* size of exec */
- zend_op_array *ops; /* op_array */
- zval *retval; /* return value */
- int bp_count; /* breakpoint count */
- int del_bp_num; /* breakpoint to delete */
- int vmret; /* return from last opcode handler execution */
+ char *exec; /* file to execute */
+ size_t exec_len; /* size of exec */
+ zend_op_array *ops; /* op_array */
+ zval *retval; /* return value */
+ int bp_count; /* breakpoint count */
+ int del_bp_num; /* breakpoint to delete */
+ int vmret; /* return from last opcode handler execution */
- FILE *oplog; /* opline log */
- FILE *io[PHPDBG_IO_FDS]; /* io */
+ FILE *oplog; /* opline log */
+ FILE *io[PHPDBG_IO_FDS]; /* io */
- char *prompt[2]; /* prompt */
- const phpdbg_color_t *colors[PHPDBG_COLORS]; /* colors */
+ char *prompt[2]; /* prompt */
+ const phpdbg_color_t *colors[PHPDBG_COLORS]; /* colors */
- phpdbg_command_t *lcmd; /* last command */
- phpdbg_param_t lparam; /* last param */
+ phpdbg_command_t *lcmd; /* last command */
+ phpdbg_param_t lparam; /* last param */
- zend_ulong flags; /* phpdbg flags */
+ zend_ulong flags; /* phpdbg flags */
ZEND_END_MODULE_GLOBALS(phpdbg) /* }}} */
#endif /* PHPDBG_H */