Triple fault: Difference between revisions

From Computer History Wiki
Jump to navigationJump to search
Fill another blank...
 
+ext link
 
Line 3: Line 3:
Triple faults were the solution to a problem with the [[Intel 80286]], which was that once they were in [[protected mode]], there was no way to return to [[real mode]]. Causing a triple fault turned out the be the answer. This issue was fixed in the successor [[Intel 80386]].
Triple faults were the solution to a problem with the [[Intel 80286]], which was that once they were in [[protected mode]], there was no way to return to [[real mode]]. Causing a triple fault turned out the be the answer. This issue was fixed in the successor [[Intel 80386]].


[[Category: OS Concepts]]
==External links==
 
* [http://www.rcollins.org/Productivity/TripleFault.html Triple Faulting the CPU]
 
[[Category: Intel Microprocessors]]

Latest revision as of 22:11, 2 March 2021

A triple fault is an event on x86 series microprocessors, where a fault occurs when the CPU is attempting enter the fault handler for a fault occurring during the course of some other fault handler. The microcode on the x86 series machines responds by re-starting the CPU, since this should 'never happen'.

Triple faults were the solution to a problem with the Intel 80286, which was that once they were in protected mode, there was no way to return to real mode. Causing a triple fault turned out the be the answer. This issue was fixed in the successor Intel 80386.

External links