Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: 2038 bug

by pg (Canon)
on Apr 11, 2003 at 06:49 UTC ( [id://249825]=note: print w/replies, xml ) Need Help??


in reply to 2038 bug

One solution to make your code survive longer is: (solution is tested with various dates set to points after 2038)
  1. turn on big int for the right lexical scopes, and
  2. do this convertion:
    my $t = time(); $t += 2 ** 32 if ($t < 0);
    This would make the epcho value increase smoothly even after 2038 (but not forever).

    The logic behind the convertion: time() returns (- 2** 31) for 2038-01-18-20:14:07, which should be 2 * 31; returns (-2**31 + 1) for 2038-01-18-20:14:08, which should be (2 ** 31 + 1) and ... so the difference between what returned from time() and what it should be is always 2 ** 32.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://249825]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (7)
As of 2024-04-25 16:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found