Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Ricardo Ungerer and committed by
Jonathan Corbet
9b4e099c d0eab64f

+2 -2
+2 -2
tools/lib/python/jobserver.py
··· 8 8 """ 9 9 Interacts with the POSIX jobserver during the Kernel build time. 10 10 11 - A "normal" jobserver task, like the one initiated by a make subrocess would do: 11 + A "normal" jobserver task, like the one initiated by a make subprocess would do: 12 12 13 13 - open read/write file descriptors to communicate with the job server; 14 14 - ask for one slot by calling:: 15 15 16 16 claim = os.read(reader, 1) 17 17 18 - - when the job finshes, call:: 18 + - when the job finishes, call:: 19 19 20 20 os.write(writer, b"+") # os.write(writer, claim) 21 21