aboutsummaryrefslogtreecommitdiffstats
path: root/vm_core.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-17 07:28:36 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-17 07:28:36 +0000
commitce7fdcf0f80dab0de42a2510a1d0d73e23dae535 (patch)
treec89e15a324d662e5ffc7d08dea39a9b6d014ef6b /vm_core.h
parent01962439e9450b3d9468030b6e2858767c8c43c0 (diff)
downloadruby-ce7fdcf0f80dab0de42a2510a1d0d73e23dae535.tar.gz
RUBY_VM_CHECK_INTS_BLOCKING: move to thread.c
* thread.c (RUBY_VM_CHECK_INTS_BLOCKING): move from vm_core.h for the static function rb_threadptr_pending_interrupt_empty_p. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51280 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/vm_core.h b/vm_core.h
index 5686ec7e08..5de066b883 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -1090,17 +1090,6 @@ void rb_threadptr_pending_interrupt_clear(rb_thread_t *th);
void rb_threadptr_pending_interrupt_enque(rb_thread_t *th, VALUE v);
int rb_threadptr_pending_interrupt_active_p(rb_thread_t *th);
-#define RUBY_VM_CHECK_INTS_BLOCKING(th) do { \
- if (UNLIKELY(!rb_threadptr_pending_interrupt_empty_p(th))) { \
- th->pending_interrupt_queue_checked = 0; \
- RUBY_VM_SET_INTERRUPT(th); \
- rb_threadptr_execute_interrupts(th, 1); \
- } \
- else if (UNLIKELY(RUBY_VM_INTERRUPTED_ANY(th))) { \
- rb_threadptr_execute_interrupts(th, 1); \
- } \
- } while (0)
-
#define RUBY_VM_CHECK_INTS(th) do { \
if (UNLIKELY(RUBY_VM_INTERRUPTED_ANY(th))) { \
rb_threadptr_execute_interrupts(th, 0); \