fix minor typos in 09-BlockingProcesses.sgml

This commit is contained in:
Jason Leschnik 2016-10-24 23:23:25 +11:00
parent 13f0338ef7
commit 7d49e03708
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@
<para>When a process is done with the file, it closes it, and <function>module_close</function> is called. That function
wakes up all the processes in the queue (there's no mechanism to only wake up one of them). It then returns and the
process which just closed the file can continue to run. In time, the scheduler decides that that process has had enough
process which just closed the file can continue to run. In time, the scheduler decides that the process has had enough
and gives control of the CPU to another process. Eventually, one of the processes which was in the queue will be given
control of the CPU by the scheduler. It starts at the point right after the call to
<function>module_interruptible_sleep_on</function><footnote><para>This means that the process is still in kernel mode --