I searched in linux box and saw it being typedef to
typedef __time_t time_t;
But could not find the __time_t definition.
|
I searched in linux box and saw it being typedef to
But could not find the __time_t definition. |
||||
|
|
|
The time_t Wikipedia article article sheds some light on this. The bottom line is that the type of
|
|||||||||||||||||||
|
|
It's defined in
|
|||||
|
|
The answer is definitely implementation-specific. To find out definitively for your platform/compiler, just add this output somewhere in your code:
If the answer is 4 (32 bits) and your data is meant to go beyond 2038, then you have 25 years to migrate your code. Your data will be fine if you store your data as a string, even if it's something simple like:
Then just read it back the same way (fread, fscanf, etc. into an int), and you have your epoch offset time. A similar workaround exists in .Net. I pass 64-bit epoch numbers between Win and Linux systems with no problem (over a communications channel). That brings up byte-ordering issues, but that's another subject. To answer paxdiablo's query, I'd say that it printed "19100" because the program was written this way (and I admit I did this myself in the '80's):
The The correct way is (change to last line only):
New question: What's the rationale for that thinking? |
||||
|
|
|
Under Visual Studio 2008, it defaults to an |
|||||||||||||||||
|
|
It's a 32-bit signed integer type on most legacy platforms. However, that causes your code to suffer from the year 2038 bug. So modern C libraries should be defining it to be a signed 64-bit int instead, which is safe for a few billion years. |
|||
|
|
|
Typically you will find these underlying implementation-specific typedefs for gcc in the You can just grep, or use a preprocessor invocation like that suggested by Quassnoi to see which specific header. |
|||
|
|
|
I could do a
and measure off of that ... but is there a preferred way ... mainly this is a best practices kind of question .... |
|||
|
|
|
|
||||
|
|