summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-26 11:45:39 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-26 11:45:39 +0000
commit58543f00b6386b5631ffc6d8f029be149d632457 (patch)
treeb87816cbf20e9607e7436ac0a62d85c6c244b04c /vm_core.h
parent12d48f4ef242eaa48844e9dbbbd5ae22b87870c3 (diff)
* thread.c (thread_join_m): use th->interrupt_mask instead of
th->in_trap. * vm_core.h (struct rb_thread_struct): remove in_trap member. * signal.c (signal_exec): ditto. * thread.c (thread_create_core): ditto. * thread.c (Init_Thread): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37863 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/vm_core.h b/vm_core.h
index f6a7a69955..8a9c4e63e4 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -585,9 +585,6 @@ typedef struct rb_thread_struct {
void *altstack;
#endif
unsigned long running_time_us;
-
- /* 1 if running trap handler */
- int in_trap;
} rb_thread_t;
/* iseq.c */