From f294553e43bc69ebcc43bb63356e437607da8f4f Mon Sep 17 00:00:00 2001 From: Sebastian Fricke Date: Wed, 15 Apr 2020 06:31:54 +0200 Subject: [PATCH] Fix typo in Interrupts-1 s/..allows the interrupted program to be resume/ ..allows the interrupted program to resume/ --- Interrupts/linux-interrupts-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Interrupts/linux-interrupts-1.md b/Interrupts/linux-interrupts-1.md index eeab497..1df63e8 100644 --- a/Interrupts/linux-interrupts-1.md +++ b/Interrupts/linux-interrupts-1.md @@ -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.