Re: [bigmem-patch] 4GB with Linux on IA32

Andrea Arcangeli (andrea@suse.de)
Tue, 17 Aug 1999 16:26:03 +0200 (CEST)


On Mon, 16 Aug 1999, Kanoj Sarcar wrote:

> ^^^ What is 2038?

#include <time.h>

main()
{
time_t t = ~0UL >> 1;
printf("%x, %s", t, ctime(&t));
t++;
printf("%x, %s", t, ctime(&t));
}

Andrea

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/