1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2024-12-22 06:38:07 +00:00

Fix typo in Interrupts-1

s/..allows the interrupted program to be resume/
  ..allows the interrupted program to resume/
This commit is contained in:
Sebastian Fricke 2020-04-15 06:31:54 +02:00
parent 9e1318f3ec
commit f294553e43

View File

@ -52,7 +52,7 @@ As mentioned earlier, an interrupt can occur at any time for a reason which the
* `Traps`
* `Aborts`
A `fault` is an exception reported before the execution of a "faulty" instruction (which can then be corrected). If correct, it allows the interrupted program to be resume.
A `fault` is an exception reported before the execution of a "faulty" instruction (which can then be corrected). If correct, it allows the interrupted program to resume.
Next a `trap` is an exception which is reported immediately following the execution of the `trap` instruction. Traps also allow the interrupted program to be continued just as a `fault` does.