summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c4
1 files changed, 2 insertions, 2 deletions
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;