From c86379402c8dfeab9504c39c2de435601d408e57 Mon Sep 17 00:00:00 2001 From: ko1 Date: Thu, 29 Nov 2012 22:44:51 +0000 Subject: * thread.c (rb_thread_interrupted): avoid warning of implicit conversion. * thread.c (rb_threadptr_execute_interrupts): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38009 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'thread.c') diff --git a/thread.c b/thread.c index cd02f3de44..8dfe5b49f2 100644 --- a/thread.c +++ b/thread.c @@ -1029,7 +1029,7 @@ rb_thread_interrupted(VALUE thval) { rb_thread_t *th; GetThreadPtr(thval, th); - return RUBY_VM_INTERRUPTED(th); + return (int)RUBY_VM_INTERRUPTED(th); } void @@ -1760,7 +1760,7 @@ rb_threadptr_execute_interrupts(rb_thread_t *th, int blocking_timing) old = ATOMIC_CAS(th->interrupt_flag, interrupt, interrupt & th->interrupt_mask); } while (old != interrupt); - interrupt &= ~th->interrupt_mask; + interrupt &= (rb_atomic_t)~th->interrupt_mask; if (!interrupt) return; -- cgit v1.2.3