From ed37579c6aa8eaa1edf62ac84269055edfc0139b Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 9 May 2014 14:31:34 +0000 Subject: thread_*.c: constify * thread_{pthread,win32}.c (native_cond_timedwait): constify. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45890 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread_win32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'thread_win32.c') diff --git a/thread_win32.c b/thread_win32.c index 7eb640aa6c..db00a736f6 100644 --- a/thread_win32.c +++ b/thread_win32.c @@ -479,7 +479,7 @@ native_cond_wait(rb_nativethread_cond_t *cond, rb_nativethread_lock_t *mutex) } static unsigned long -abs_timespec_to_timeout_ms(struct timespec *ts) +abs_timespec_to_timeout_ms(const struct timespec *ts) { struct timeval tv; struct timeval now; @@ -495,7 +495,7 @@ abs_timespec_to_timeout_ms(struct timespec *ts) } static int -native_cond_timedwait(rb_nativethread_cond_t *cond, rb_nativethread_lock_t *mutex, struct timespec *ts) +native_cond_timedwait(rb_nativethread_cond_t *cond, rb_nativethread_lock_t *mutex, const struct timespec *ts) { unsigned long timeout_ms; -- cgit v1.2.3