summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--thread.c6
-rw-r--r--thread_sync.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/thread.c b/thread.c
index 9292d78ea6..de953e6994 100644
--- a/thread.c
+++ b/thread.c
@@ -845,7 +845,7 @@ thread_join_sleep(VALUE arg)
while (target_th->status != THREAD_KILLED) {
if (forever) {
- sleep_forever(th, 1, 0);
+ sleep_forever(th, TRUE, FALSE);
}
else {
double now = timeofday();
@@ -1136,14 +1136,14 @@ void
rb_thread_sleep_forever(void)
{
thread_debug("rb_thread_sleep_forever\n");
- sleep_forever(GET_THREAD(), 0, 1);
+ sleep_forever(GET_THREAD(), FALSE, TRUE);
}
void
rb_thread_sleep_deadly(void)
{
thread_debug("rb_thread_sleep_deadly\n");
- sleep_forever(GET_THREAD(), 1, 1);
+ sleep_forever(GET_THREAD(), TRUE, TRUE);
}
static double
diff --git a/thread_sync.c b/thread_sync.c
index 8869af2deb..9fbe3b0383 100644
--- a/thread_sync.c
+++ b/thread_sync.c
@@ -420,7 +420,7 @@ rb_mutex_abandon_all(rb_mutex_t *mutexes)
static VALUE
rb_mutex_sleep_forever(VALUE time)
{
- sleep_forever(GET_THREAD(), 1, 0); /* permit spurious check */
+ sleep_forever(GET_THREAD(), TRUE, FALSE); /* permit spurious check */
return Qnil;
}