summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2015-12-23 22:35:48 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2015-12-23 22:35:48 +0900
commita060bd51145c0db3e64bdc494307621024dae3ed (patch)
tree474f0ba3d258d50b67544c0866c94f1d3c3350d8 /mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h
parent7e4a7abf5f2396acc1eb302da75f79b296aa3b31 (diff)
parent887a56ba806f64478bc63a8cc4327334f4f42201 (diff)
downloadmruby-a060bd51145c0db3e64bdc494307621024dae3ed.tar.gz
mruby-a060bd51145c0db3e64bdc494307621024dae3ed.zip
Merge pull request #3057 from yuuu/add_next_command
mrdb: Added 'next' command.
Diffstat (limited to 'mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h')
-rwxr-xr-xmrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h b/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h
index 5d897170a..5ac12c1cd 100755
--- a/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h
+++ b/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h
@@ -109,6 +109,7 @@ typedef struct mrb_debug_context {
const char *prvfile;
int32_t prvline;
+ mrb_callinfo *prvci;
mrdb_exemode xm;
mrdb_exephase xphase;
@@ -146,6 +147,7 @@ typedef dbgcmd_state (*debug_command_func)(mrb_state*, mrdb_state*);
dbgcmd_state dbgcmd_run(mrb_state*, mrdb_state*);
dbgcmd_state dbgcmd_continue(mrb_state*, mrdb_state*);
dbgcmd_state dbgcmd_step(mrb_state*, mrdb_state*);
+dbgcmd_state dbgcmd_next(mrb_state*, mrdb_state*);
/* cmdbreak.c */
dbgcmd_state dbgcmd_break(mrb_state*, mrdb_state*);
dbgcmd_state dbgcmd_info_break(mrb_state*, mrdb_state*);