From 34b6d066291fb54972c71033c856b78f9eac4ab4 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 17 Jun 2012 07:20:53 +0000 Subject: thread_win32.c: reserved pattern name * thread_win32.c (native_cond_timedwait_ms): rename reserved pattern name. user defined symbols should not start with __. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36116 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread_win32.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'thread_win32.c') diff --git a/thread_win32.c b/thread_win32.c index 459ae4c097..2410cfae81 100644 --- a/thread_win32.c +++ b/thread_win32.c @@ -448,7 +448,7 @@ native_cond_broadcast(rb_thread_cond_t *cond) static int -__cond_timedwait(rb_thread_cond_t *cond, rb_thread_lock_t *mutex, unsigned long msec) +native_cond_timedwait_ms(rb_thread_cond_t *cond, rb_thread_lock_t *mutex, unsigned long msec) { DWORD r; struct cond_event_entry entry; @@ -481,7 +481,7 @@ __cond_timedwait(rb_thread_cond_t *cond, rb_thread_lock_t *mutex, unsigned long static int native_cond_wait(rb_thread_cond_t *cond, rb_thread_lock_t *mutex) { - return __cond_timedwait(cond, mutex, INFINITE); + return native_cond_timedwait_ms(cond, mutex, INFINITE); } static unsigned long @@ -509,7 +509,7 @@ native_cond_timedwait(rb_thread_cond_t *cond, rb_thread_lock_t *mutex, struct ti if (!timeout_ms) return ETIMEDOUT; - return __cond_timedwait(cond, mutex, timeout_ms); + return native_cond_timedwait_ms(cond, mutex, timeout_ms); } #if SIZEOF_TIME_T == SIZEOF_LONG -- cgit v1.2.3