From 76ddb7e7acfbef1b402e4e9bc83e85eee213d385 Mon Sep 17 00:00:00 2001 From: gotoyuzo Date: Fri, 5 Jan 2007 03:33:40 +0000 Subject: * thread_pthread.ci (native_sleep): fix tv_nsec overflow. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11475 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread_pthread.ci | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'thread_pthread.ci') diff --git a/thread_pthread.ci b/thread_pthread.ci index df1ed7e5d4..3a3249e531 100644 --- a/thread_pthread.ci +++ b/thread_pthread.ci @@ -254,6 +254,10 @@ native_sleep(yarv_thread_t *th, struct timeval *tv) gettimeofday(&tvn, NULL); ts.tv_sec = tvn.tv_sec + tv->tv_sec; ts.tv_nsec = (tvn.tv_usec + tv->tv_usec) * 1000; + if (ts.tv_nsec >= 1000000000){ + ts.tv_sec += 1; + ts.tv_nsec -= 1000000000; + } } th->status = THREAD_STOPPED; -- cgit v1.2.3