Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
029c7c11
Unverified
Commit
029c7c11
authored
Jun 05, 2020
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add `const` modifier to `mrb_irep` for `code_fetch_hook`.
parent
a68f005f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
include/mruby.h
include/mruby.h
+2
-2
mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c
mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c
+1
-1
No files found.
include/mruby.h
View file @
029c7c11
...
...
@@ -277,8 +277,8 @@ typedef struct mrb_state {
#endif
#ifdef MRB_ENABLE_DEBUG_HOOK
void
(
*
code_fetch_hook
)(
struct
mrb_state
*
mrb
,
struct
mrb_irep
*
irep
,
const
mrb_code
*
pc
,
mrb_value
*
regs
);
void
(
*
debug_op_hook
)(
struct
mrb_state
*
mrb
,
struct
mrb_irep
*
irep
,
const
mrb_code
*
pc
,
mrb_value
*
regs
);
void
(
*
code_fetch_hook
)(
struct
mrb_state
*
mrb
,
const
struct
mrb_irep
*
irep
,
const
mrb_code
*
pc
,
mrb_value
*
regs
);
void
(
*
debug_op_hook
)(
struct
mrb_state
*
mrb
,
const
struct
mrb_irep
*
irep
,
const
mrb_code
*
pc
,
mrb_value
*
regs
);
#endif
#ifdef MRB_BYTECODE_DECODE_OPTION
...
...
mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c
View file @
029c7c11
...
...
@@ -545,7 +545,7 @@ check_method_breakpoint(mrb_state *mrb, mrb_irep *irep, const mrb_code *pc, mrb_
}
static
void
mrb_code_fetch_hook
(
mrb_state
*
mrb
,
mrb_irep
*
irep
,
const
mrb_code
*
pc
,
mrb_value
*
regs
)
mrb_code_fetch_hook
(
mrb_state
*
mrb
,
const
mrb_irep
*
irep
,
const
mrb_code
*
pc
,
mrb_value
*
regs
)
{
const
char
*
file
;
int32_t
line
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment