summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authortake_cheeze <[email protected]>2013-09-02 00:17:26 +0900
committertake_cheeze <[email protected]>2013-09-02 00:48:07 +0900
commitbd5afe9eef3be19c3cf9612388d0ba0227144683 (patch)
tree24a067bc71d0c9ae0d636288b964fd6bd4c6d227 /src
parent0b806ca17ba1a9dc6b5863050090a74e51236745 (diff)
downloadmruby-bd5afe9eef3be19c3cf9612388d0ba0227144683.tar.gz
mruby-bd5afe9eef3be19c3cf9612388d0ba0227144683.zip
rename debug function name
Diffstat (limited to 'src')
-rw-r--r--src/backtrace.c4
-rw-r--r--src/debug.c4
-rw-r--r--src/error.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/backtrace.c b/src/backtrace.c
index a1c35d09f..f1dcf5b4e 100644
--- a/src/backtrace.c
+++ b/src/backtrace.c
@@ -87,8 +87,8 @@ mrb_output_backtrace(mrb_state *mrb, struct RObject *exc, output_stream_func fun
else {
pc = (mrb_code*)mrb_voidp(mrb_obj_iv_get(mrb, exc, mrb_intern2(mrb, "lastpc", 6)));
}
- filename = mrb_get_filename(irep, pc - irep->iseq - 1);
- line = mrb_get_line(irep, pc - irep->iseq - 1);
+ filename = mrb_debug_get_filename(irep, pc - irep->iseq - 1);
+ line = mrb_debug_get_line(irep, pc - irep->iseq - 1);
}
if (!verbose && line == -1) continue;
if (ci->target_class == ci->proc->target_class)
diff --git a/src/debug.c b/src/debug.c
index 637d39bcc..b8982fc3e 100644
--- a/src/debug.c
+++ b/src/debug.c
@@ -40,7 +40,7 @@ select_line_type(uint32_t pc_count, uint16_t line_count)
}
char const*
-mrb_get_filename(mrb_irep* irep, uint32_t pc)
+mrb_debug_get_filename(mrb_irep* irep, uint32_t pc)
{
mrb_irep_debug_info_file* f = NULL;
if (irep) {
@@ -53,7 +53,7 @@ mrb_get_filename(mrb_irep* irep, uint32_t pc)
}
int32_t
-mrb_get_line(mrb_irep* irep, uint32_t const pc)
+mrb_debug_get_line(mrb_irep* irep, uint32_t const pc)
{
mrb_irep_debug_info_file* f = NULL;
if (irep) {
diff --git a/src/error.c b/src/error.c
index 4b5eab397..326dc0b76 100644
--- a/src/error.c
+++ b/src/error.c
@@ -199,8 +199,8 @@ exc_debug_info(mrb_state *mrb, struct RObject *exc)
if (ci->proc && !MRB_PROC_CFUNC_P(ci->proc)) {
mrb_irep *irep = ci->proc->body.irep;
- int32_t const line = mrb_get_line(irep, pc - irep->iseq - 1);
- char const* file = mrb_get_filename(irep, pc - irep->iseq - 1);
+ int32_t const line = mrb_debug_get_line(irep, pc - irep->iseq - 1);
+ char const* file = mrb_debug_get_filename(irep, pc - irep->iseq - 1);
if(line != -1 && file) {
mrb_obj_iv_set(mrb, exc, mrb_intern2(mrb, "file", 4), mrb_str_new_cstr(mrb, file));
mrb_obj_iv_set(mrb, exc, mrb_intern2(mrb, "line", 4), mrb_fixnum_value(line));