From a93c650312c11fd22e146ec51d3208da28595152 Mon Sep 17 00:00:00 2001 From: ko1 Date: Sun, 29 Oct 2017 14:06:58 +0000 Subject: `rb_ec_error_print()`. * eval_error.c (rb_threadptr_error_print): renamed to rb_ec_error_print() and it accepts `ec`. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60545 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- process.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'process.c') diff --git a/process.c b/process.c index 16d489a7ec..a67e63b89d 100644 --- a/process.c +++ b/process.c @@ -3850,10 +3850,10 @@ rb_f_abort(int argc, const VALUE *argv) { rb_check_arity(argc, 0, 1); if (argc == 0) { - rb_thread_t *th = GET_THREAD(); - VALUE errinfo = th->ec->errinfo; + rb_execution_context_t *ec = GET_EC(); + VALUE errinfo = ec->errinfo; if (!NIL_P(errinfo)) { - rb_threadptr_error_print(th, errinfo); + rb_ec_error_print(ec, errinfo); } rb_exit(EXIT_FAILURE); } -- cgit v1.2.3