summaryrefslogtreecommitdiff
path: root/thread_pthread.c
diff options
context:
space:
mode:
Diffstat (limited to 'thread_pthread.c')
-rw-r--r--thread_pthread.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/thread_pthread.c b/thread_pthread.c
index bcab6acddb..55e7238d2d 100644
--- a/thread_pthread.c
+++ b/thread_pthread.c
@@ -641,7 +641,6 @@ remove_signal_thread_list(rb_thread_t *th)
}
static pthread_t timer_thread_id;
-static void timer_thread_function(void);
static void *
thread_timer(void *dummy)
@@ -670,7 +669,7 @@ thread_timer(void *dummy)
});
}
#endif
- timer_thread_function();
+ timer_thread_function(dummy);
}
return NULL;
}
@@ -688,7 +687,7 @@ rb_thread_create_timer_thread(void)
#ifdef PTHREAD_STACK_MIN
pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN);
#endif
- err = pthread_create(&timer_thread_id, &attr, thread_timer, 0);
+ err = pthread_create(&timer_thread_id, &attr, thread_timer, GET_VM());
if (err != 0) {
rb_bug("rb_thread_create_timer_thread: return non-zero (%d)", err);
}