1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* vm_trace.c (rb_postponed_job_flush): fix bit operation.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43252 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2013-10-11 09:12:45 +00:00
parent 86597752f7
commit 542b31ca27
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Fri Oct 11 18:11:34 2013 Koichi Sasada <ko1@atdot.net>
* vm_trace.c (rb_postponed_job_flush): fix bit operation.
Fri Oct 11 17:33:24 2013 Akinori MUSHA <knu@iDaemons.org>
* misc/ruby-electric.el: Import ruby-electric.el 2.0 from

View file

@ -1464,5 +1464,5 @@ rb_postponed_job_flush(rb_vm_t *vm)
TH_POP_TAG();
}
/* restore POSTPONED_JOB mask */
th->interrupt_mask &= ~saved_postponed_job_interrupt_mask;
th->interrupt_mask &= ~(saved_postponed_job_interrupt_mask ^ POSTPONED_JOB_INTERRUPT_MASK);
}