summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/thread.c b/thread.c
index e76b5ed99b..d99c2d6df5 100644
--- a/thread.c
+++ b/thread.c
@@ -834,8 +834,9 @@ static void
sleep_forever(rb_thread_t *th, int deadlockable)
{
enum rb_thread_status prev_status = th->status;
+ enum rb_thread_status status = deadlockable ? THREAD_STOPPED_FOREVER : THREAD_STOPPED;
- th->status = deadlockable ? THREAD_STOPPED_FOREVER : THREAD_STOPPED;
+ th->status = status;
do {
if (deadlockable) {
th->vm->sleeper++;
@@ -846,7 +847,7 @@ sleep_forever(rb_thread_t *th, int deadlockable)
th->vm->sleeper--;
}
RUBY_VM_CHECK_INTS();
- } while (th->status == THREAD_STOPPED_FOREVER);
+ } while (th->status == status);
th->status = prev_status;
}