summaryrefslogtreecommitdiff
path: root/thread_pthread.ci
diff options
context:
space:
mode:
Diffstat (limited to 'thread_pthread.ci')
-rw-r--r--thread_pthread.ci6
1 files changed, 3 insertions, 3 deletions
diff --git a/thread_pthread.ci b/thread_pthread.ci
index 1b9d1b9c53..595bb8e8fb 100644
--- a/thread_pthread.ci
+++ b/thread_pthread.ci
@@ -236,7 +236,7 @@ native_thread_create(rb_thread_t *th)
CHECK_ERR(pthread_attr_init(&attr));
#ifdef PTHREAD_STACK_MIN
- thread_debug("create - stack size: %u\n", stack_size);
+ thread_debug("create - stack size: %lu\n", (unsigned long)stack_size);
CHECK_ERR(pthread_attr_setstacksize(&attr, stack_size));
#endif
@@ -353,8 +353,8 @@ native_sleep(rb_thread_t *th, struct timeval *tv)
}
else {
int r;
- thread_debug("native_sleep: pthread_cond_timedwait start (%d, %ld)\n",
- ts.tv_sec, ts.tv_nsec);
+ thread_debug("native_sleep: pthread_cond_timedwait start (%ld, %ld)\n",
+ (unsigned long)ts.tv_sec, ts.tv_nsec);
r = pthread_cond_timedwait(&th->native_thread_data.sleep_cond,
&th->interrupt_lock, &ts);
thread_debug("native_sleep: pthread_cond_timedwait end (%d)\n", r);