jobserver: Fix typo in docstring
This commit fixes small typos in the docstring of jobserver.py. Signed-off-by: Ricardo Ungerer <ungerer.ricardo@gmail.com> Signed-off-by: Jonathan Corbet <corbet@lwn.net> Message-ID: <20260316220218.568022-1-ungerer.ricardo@gmail.com>master
parent
d0eab64faf
commit
9b4e099c22
|
|
@ -8,14 +8,14 @@
|
|||
"""
|
||||
Interacts with the POSIX jobserver during the Kernel build time.
|
||||
|
||||
A "normal" jobserver task, like the one initiated by a make subrocess would do:
|
||||
A "normal" jobserver task, like the one initiated by a make subprocess would do:
|
||||
|
||||
- open read/write file descriptors to communicate with the job server;
|
||||
- ask for one slot by calling::
|
||||
|
||||
claim = os.read(reader, 1)
|
||||
|
||||
- when the job finshes, call::
|
||||
- when the job finishes, call::
|
||||
|
||||
os.write(writer, b"+") # os.write(writer, claim)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue