summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-16 10:16:34 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-16 10:16:34 +0000
commit239c98553dfe22ed77bb89e3b2c744eb279d9116 (patch)
treed405c50b1c7da8e33969ff1b88881c32e8d48f91 /vm_core.h
parent01dc0a7104d09f59e5c94e286adcac7c04574eab (diff)
revert r46834 because it does not pass tests
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46835 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/vm_core.h b/vm_core.h
index 44b63ea43f..39dce05c99 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -364,8 +364,10 @@ typedef struct rb_vm_struct {
struct st_table *loading_table;
/* signal */
- VALUE trap_list_cmds; /* an Array object */
- int trap_list_safes[RUBY_NSIG];
+ struct {
+ VALUE cmd;
+ int safe;
+ } trap_list[RUBY_NSIG];
/* hook */
rb_hook_list_t event_hooks;