The Year 2038 Problem Explained

Cause

From en.wikipedia.org
The problem exists in systems which measure Unix time – the number of seconds elapsed since the Unix epoch (00:00:00 UTC on 1 January 1970) – and store it in a signed 32-bit integer.

Year 2038 problem

en.wikipedia.orgVerified

Vulnerable Systems

Made with Arc Search

Arc Search read websites across the internet to make you this perfect tab.

Try it for free
Any system using data structures with 32-bit time representations has an inherent risk to fail.

Year 2038 problem

en.wikipedia.orgVerified

Solutions

From en.wikipedia.org
To address the problem, many modern systems have been upgraded to measure Unix time with signed 64-bit integers instead.

Year 2038 problem

en.wikipedia.orgVerified

Potential Impact

From en.wikipedia.org
Computer systems that use time for critical computations may encounter fatal errors if the year 2038 problem is not addressed.

Year 2038 problem

en.wikipedia.orgVerified

Dive Deeper