diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-01-23 09:33:31 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-01-23 09:33:31 +0000 |
commit | 25122b4c8c15f7715109d918a36ec9a3a8c3d046 (patch) | |
tree | 134cdf8b625a5b3f0325c31ba459d2691866b623 /gcc/ada/a-calend.ads | |
parent | 6bd23a6981447d04e589a806bcde6a9f53d89b62 (diff) | |
download | gcc-25122b4c8c15f7715109d918a36ec9a3a8c3d046.tar.gz |
2012-01-23 Robert Dewar <dewar@adacore.com>
* a-catizo.ads, a-calend.adb, a-calend.ads, par-ch13.adb: Minor
reformatting.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@183417 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/a-calend.ads')
-rw-r--r-- | gcc/ada/a-calend.ads | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/gcc/ada/a-calend.ads b/gcc/ada/a-calend.ads index 61780190039..9e08c79375b 100644 --- a/gcc/ada/a-calend.ads +++ b/gcc/ada/a-calend.ads @@ -193,6 +193,35 @@ private -- of year - 4 to year + 4. Internally, routines Split and Time_Of add or -- subtract a "fake" February 29 to facilitate the arithmetic involved. + ------------------------------------ + -- Time zones and UTC_Time_Offset -- + ------------------------------------ + + -- The implementation-defined time zone of Ada.Calendar routines is the + -- local time zone. The term "local time zone" can be interpreted in two + -- different ways - either the offset from UTC of the "now" or the offset + -- from UTC of some input date. + + -- For efficency reasons, Split and Time_Of take the first approach. Since + -- the Ada Reference Manual does not mandate that Split and Time_Of should + -- be concious of historic time zones, this interpretation is acceptable + -- and efficent in terms of performance. Split and Time_Of localize their + -- respective input regardless of whether it represent a past or a future + -- date. + + -- UTC_Time_Offset on the other hand must be knowledgeable of historic time + -- zones. To achieve this, the implementation relies on various operating + -- system routines. Note that not all operating systems support time zones. + -- UTC_Time_Offset calculates the offset from UTC as it occurred or will + -- occur on the input date relative to the local time zone. Example: + + -- Date Offset Reason + -- 2012-01-11 -300 + -- 2011-03-12 -300 + -- 2011-03-14 -240 Daylight savings is in effect + + -- Local declarations + -- The underlying type of Time has been chosen to be a 64 bit signed -- integer number since it allows for easier processing of sub seconds -- and arithmetic. @@ -351,7 +380,7 @@ private package Time_Zones_Operations is function UTC_Time_Offset (Date : Time) return Long_Integer; - -- Return (in seconds), the difference between the local time zone and + -- Return (in seconds) the difference between the local time zone and -- UTC time at a specific historic date. end Time_Zones_Operations; |