Merge pull request #156 from linD026/master

Adjust "in the mean time" description of tasklet
This commit is contained in:
Jim Huang 2022-07-02 22:38:06 +08:00 committed by GitHub
commit cd2ba2447d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1763,7 +1763,8 @@ For example, when triggered from an interrupt, whereas work queues are more comp
\subsection{Tasklets}
\label{sec:tasklet}
Here is an example tasklet module.
The \cpp|tasklet_fn| function runs for a few seconds and in the mean time execution of the \cpp|example_tasklet_init| function continues to the exit point.
The \cpp|tasklet_fn| function runs for a few seconds.
In the meantime, execution of the \cpp|example_tasklet_init| function may continue to the exit point, depending on whether it is interrupted by \textbf{softirq}.
\samplec{examples/example_tasklet.c}