aboutsummaryrefslogtreecommitdiffstats
path: root/process.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-26 07:56:44 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-26 07:56:44 +0000
commitc5b113c649702447e1d4edd036fc6afca2ac638c (patch)
tree62a3065ee36528808c6dd58a23011df911fc3820 /process.c
parent9dfb475a35cd60b72bc9f8565008b4bd52c062a9 (diff)
downloadruby-c5b113c649702447e1d4edd036fc6afca2ac638c.tar.gz
move several fields from rb_thread_t to rb_execution_context_t.
* vm_core.h (rb_thread_t): move several fields which are copied at cont.c to rb_execution_context_t. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59177 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
-rw-r--r--process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/process.c b/process.c
index 7f5c641852..a167562f00 100644
--- a/process.c
+++ b/process.c
@@ -3772,7 +3772,7 @@ rb_f_exit_bang(int argc, VALUE *argv, VALUE obj)
void
rb_exit(int status)
{
- if (GET_THREAD()->tag) {
+ if (GET_THREAD()->ec.tag) {
VALUE args[2];
args[0] = INT2NUM(status);