diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-10-10 23:56:15 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-10-10 23:56:15 +0000 |
commit | 12a5525b6f8d15c3baa862be804eae4e1768b430 (patch) | |
tree | 0c0560516d0b8721e49dc339b78efa12a2772c59 /vm_trace.c | |
parent | d7de529996ac48512c027bf97bdbef475bd65b04 (diff) | |
download | ruby-12a5525b6f8d15c3baa862be804eae4e1768b430.tar.gz |
vm_trace.c: use macro
* vm_trace.c (rb_postponed_job_flush): use dedicated macro.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43248 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_trace.c')
-rw-r--r-- | vm_trace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_trace.c b/vm_trace.c index a8ae1d3795..0572649f27 100644 --- a/vm_trace.c +++ b/vm_trace.c @@ -1456,7 +1456,7 @@ rb_postponed_job_flush(rb_vm_t *vm) save.index = index; save.interrupt_mask = cur_th->interrupt_mask; - cur_th->interrupt_mask |= POSTPONED_JOB_INTERRUPT_MASK; + RUBY_VM_SET_POSTPONED_JOB_INTERRUPT(cur_th); TH_PUSH_TAG(cur_th); EXEC_TAG(); /* ignore all jumps, just continue */ |