aboutsummaryrefslogtreecommitdiffstats
path: root/timev.h
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-29 19:06:29 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-29 19:06:29 +0000
commit8b32a1de29b09e4bbd9671db7172dac245611105 (patch)
treeb79ce0e8916f16fabf218546fc1af49b8049c6ea /timev.h
parent4a9bca2496f66b44b9fff0377443715a03c6ddc7 (diff)
downloadruby-8b32a1de29b09e4bbd9671db7172dac245611105.tar.gz
* timev.h (TIME_SCALE): defined as 1000000000.
(struct vtm): subsec is replaced by subsecx. subsec * TIME_SCALE == subsecx. * time.c: avoid rational in most cases. (struct time_object): timev is replaced by timexv. timev * TIME_SCALE == timexv. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24707 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'timev.h')
-rw-r--r--timev.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/timev.h b/timev.h
index 6fa4f86415..631fcf3e1d 100644
--- a/timev.h
+++ b/timev.h
@@ -8,7 +8,7 @@ struct vtm {
int hour; /* 0..23 */
int min; /* 0..59 */
int sec; /* 0..60 */
- VALUE subsec; /* 0 <= subsec < 1. possibly Rational. */
+ VALUE subsecx; /* 0 <= subsecx < TIME_SCALE. possibly Rational. */
VALUE utc_offset; /* -3600 as -01:00 for example. possibly Rational. */
int wday; /* 0:Sunday, 1:Monday, ..., 6:Saturday */
int yday; /* 1..366 */
@@ -16,4 +16,6 @@ struct vtm {
const char *zone; /* "JST", "EST", "EDT", etc. */
};
+#define TIME_SCALE 1000000000
+
#endif