summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-04-01 04:19:37 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-04-01 04:19:37 +0000
commit9d0fbe23b6ed84657eccac5d657b58eef2855361 (patch)
tree6cedc916b995917ff9420c0aa21095c4ae1f49d0 /vm_core.h
parent92b7d39ea12495d23046e51571703627e5a808ea (diff)
* vm_core.h (RUBY_VM_CHECK_INTS_TH): merge a patch by ko1
in [ruby-dev:43373]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31227 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/vm_core.h b/vm_core.h
index 257bdce668..c5417d9381 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -703,9 +703,9 @@ void rb_thread_lock_unlock(rb_thread_lock_t *);
void rb_thread_lock_destroy(rb_thread_lock_t *);
#define RUBY_VM_CHECK_INTS_TH(th) do { \
- if (UNLIKELY((th)->interrupt_flag)) { \
- rb_threadptr_execute_interrupts(th); \
- } \
+ if (UNLIKELY((th)->interrupt_flag)) { \
+ rb_threadptr_execute_interrupts(th); \
+ } \
} while (0)
#define RUBY_VM_CHECK_INTS() \