From 61ae1c9800827611288b522faa99bbc415009ccd Mon Sep 17 00:00:00 2001 From: usa Date: Tue, 2 Sep 2008 01:52:46 +0000 Subject: * win32/win32.c (gettimeofday): easier calculation. use the definition of the Gregorian calender. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@19054 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ win32/win32.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ae21e306f4..e0090233a7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Sep 2 10:52:34 2008 NAKAMURA Usaku + + * win32/win32.c (gettimeofday): easier calculation. use the definition + of the Gregorian calender. + Tue Sep 2 10:18:58 2008 NAKAMURA Usaku * win32/win32.c (gettimeofday): calc tv_sec and tv_usec from system diff --git a/win32/win32.c b/win32/win32.c index 13ddbd374b..c63f211db1 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -2992,7 +2992,7 @@ gettimeofday(struct timeval *tv, struct timezone *tz) the first leap second is at 1972/06/30, so we doesn't need to think about it. */ lt /= 10000; /* to msec */ - lt -= (LONG_LONG)(369 * 365 + 24 * 3 + 17) * 24 * 60 * 60 * 1000; + lt -= (LONG_LONG)((1970-1601)*365.2425) * 24 * 60 * 60 * 1000; tv->tv_sec = lt / 1000; tv->tv_usec = lt % 1000; -- cgit v1.2.3