Why is
1 January 1970 00:00:00
considered the epoch time?
|
4
|
|||||||
|
|
|
Early versions of unix measured system time in 1/60 s intervals. This meant that a 32-bit unsigned integer could only represent a span of time less than 829 days. For this reason, the time represented by the number Later, the system time was changed to increment every second, which increased the span of time that could be represented by a 32-bit unsigned integer to around 136 years. As it was no longer so important to squeeze every second out of the counter, the epoch was rounded down to the nearest decade, thus becoming 1970-1-1. One must assume that this was considered a bit neater than 1971-1-1. Note that a 32-bit signed integer using 1970-1-1 as its epoch can represent dates up to 2038-1-19, on which date it will wrap around to 1901-12-13. |
||||||
|
|
|
The universe was created on Jan 1, 1970. Anyone who tells you otherwise is clearly lying. |
|||
|
|
|
|
http://en.wikipedia.org/wiki/Unix_time#History explains a little about the origins of Unix time and the chosen epoch. The definition of unix time and the epoch date went through a couple of changes before stabilizing on what it is now. But it does not say why exactly 1/1/1970 was chosen in the end. Notable excerpts from the Wikipedia page:
|
|||
|
|
|
|
|
||||||||
|
|
|
Short answer: Why not? Longer answer: The time itself doesn't really matter, as long as everyone who uses it agrees on its value. As 1/1/70 has been in use for so long, using it will make you code as understandable as possible for as many people as possible. There's no great merit in choosing an arbitrary epoch just to be different. |
||||||
|