We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2232257 commit 261623cCopy full SHA for 261623c
lkmpg.tex
@@ -1985,7 +1985,8 @@ \subsection{Detecting button presses}
1985
\subsection{Bottom Half}
1986
\label{sec:bottom_half}
1987
Suppose you want to do a bunch of stuff inside of an interrupt routine.
1988
-A common way to do that without rendering the interrupt unavailable for a significant duration is to combine it with a tasklet.
+A common way to avoid blocking the interrupt for a significant duration
1989
+is to defer the time-consuming part to a workqueue.
1990
This pushes the bulk of the work off into the scheduler.
1991
1992
The example below modifies the previous example to also run an additional task when an interrupt is triggered.
0 commit comments