ruby-changes:46262
From: nobu <ko1@a...>
Date: Mon, 17 Apr 2017 09:25:53 +0900 (JST)
Subject: [ruby-changes:46262] nobu:r58376 (trunk): eval.c: share rb_longjmp
nobu 2017-04-17 09:25:48 +0900 (Mon, 17 Apr 2017) New Revision: 58376 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=58376 Log: eval.c: share rb_longjmp * eval.c (rb_longjmp, rb_raise_jump): parameterize thread, and share rb_longjmp. Modified files: trunk/eval.c Index: eval.c =================================================================== --- eval.c (revision 58375) +++ eval.c (revision 58376) @@ -434,7 +434,7 @@ rb_frozen_class_p(VALUE klass) https://github.com/ruby/ruby/blob/trunk/eval.c#L434 } } -NORETURN(static void rb_longjmp(int, volatile VALUE, VALUE)); +NORETURN(static void rb_longjmp(rb_thread_t *, int, volatile VALUE, VALUE)); static VALUE get_errinfo(void); static VALUE get_thread_errinfo(rb_thread_t *th); @@ -606,9 +606,8 @@ rb_threadptr_setup_exception(rb_thread_t https://github.com/ruby/ruby/blob/trunk/eval.c#L606 } static void -rb_longjmp(int tag, volatile VALUE mesg, VALUE cause) +rb_longjmp(rb_thread_t *th, int tag, volatile VALUE mesg, VALUE cause) { - rb_thread_t *th = GET_THREAD(); setup_exception(th, tag, mesg, cause); rb_thread_raised_clear(th); TH_JUMP_TAG(th, tag); @@ -622,7 +621,7 @@ rb_exc_raise(VALUE mesg) https://github.com/ruby/ruby/blob/trunk/eval.c#L621 if (!NIL_P(mesg)) { mesg = make_exception(1, &mesg, FALSE); } - rb_longjmp(TAG_RAISE, mesg, Qundef); + rb_longjmp(GET_THREAD(), TAG_RAISE, mesg, Qundef); } void @@ -631,7 +630,7 @@ rb_exc_fatal(VALUE mesg) https://github.com/ruby/ruby/blob/trunk/eval.c#L630 if (!NIL_P(mesg)) { mesg = make_exception(1, &mesg, FALSE); } - rb_longjmp(TAG_FATAL, mesg, Qnil); + rb_longjmp(GET_THREAD(), TAG_FATAL, mesg, Qnil); } void @@ -778,10 +777,7 @@ rb_raise_jump(VALUE mesg, VALUE cause) https://github.com/ruby/ruby/blob/trunk/eval.c#L777 rb_vm_pop_frame(th); EXEC_EVENT_HOOK(th, RUBY_EVENT_C_RETURN, self, me->def->original_id, mid, klass, Qnil); - setup_exception(th, TAG_RAISE, mesg, cause); - - rb_thread_raised_clear(th); - TH_JUMP_TAG(th, TAG_RAISE); + rb_longjmp(th, TAG_RAISE, mesg, cause); } void -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/