From 0702b5797e9b4f724b3c4f16330f62fbc9f41b8b Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 17 Apr 2017 01:23:50 +0000 Subject: vm_backtrace.c: backtrace functions per threads * vm_backtrace.c (rb_threadptr_backtrace_object): rename and extern. * vm_backtrace.c (rb_threadptr_backtrace_str_ary): rename as threadptr since the parameter is rb_thread_t*. * vm_backtrace.c (rb_threadptr_backtrace_location_ary): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58377 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eval.c') diff --git a/eval.c b/eval.c index a31dc7107d..f3c151a130 100644 --- a/eval.c +++ b/eval.c @@ -516,7 +516,7 @@ setup_exception(rb_thread_t *th, int tag, volatile VALUE mesg, VALUE cause) VALUE at; if (sysstack_error_p(mesg)) { if (NIL_P(rb_attr_get(mesg, idBt))) { - at = rb_vm_backtrace_object(); + at = rb_threadptr_backtrace_object(th); rb_ivar_set(mesg, idBt, at); rb_ivar_set(mesg, idBt_locations, at); } @@ -530,7 +530,7 @@ setup_exception(rb_thread_t *th, int tag, volatile VALUE mesg, VALUE cause) if (rb_threadptr_set_raised(th)) goto fatal; bt = rb_get_backtrace(mesg); if (NIL_P(bt)) { - at = rb_vm_backtrace_object(); + at = rb_threadptr_backtrace_object(th); if (OBJ_FROZEN(mesg)) { mesg = rb_obj_dup(mesg); } -- cgit v1.2.3