1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2025-01-03 12:20:56 +00:00

Update interrupts-9.md

This commit is contained in:
0xAX 2015-10-25 18:39:50 +06:00
parent 349aa9792b
commit 19b923fe8c

View File

@ -22,7 +22,7 @@ Interrupts may have different important characteristics and there are two among
* Handler of an interrupt must execute quickly; * Handler of an interrupt must execute quickly;
* Sometime an interrupt handler must do a large amount of work. * Sometime an interrupt handler must do a large amount of work.
As you can understand, it is almost impossible to make so that both characteristics were valid. Because of these, previously the handling of interrupts was splitted into two parts: As you can understand, it is almost impossible to make so that both characteristics were valid. Because of these, previously the handling of interrupts was split into two parts:
* Top half; * Top half;
* Bottom half; * Bottom half;