solenv/bin/job-limiter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 0053dfbabd8b6711ea7e9354e5792048931daf7c Author: Andrea Gelmini <andrea.gelm...@gelma.net> AuthorDate: Sun Nov 5 14:20:42 2023 +0100 Commit: Julien Nabet <serval2...@yahoo.fr> CommitDate: Sun Nov 5 17:51:31 2023 +0100 Fix typo Change-Id: I84186bee245a95a74e92c974ca94bb81c31ee1ac Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158950 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2...@yahoo.fr> diff --git a/solenv/bin/job-limiter.cpp b/solenv/bin/job-limiter.cpp index c5757bfb4a27..a94aafde9687 100644 --- a/solenv/bin/job-limiter.cpp +++ b/solenv/bin/job-limiter.cpp @@ -12,7 +12,7 @@ // Ideally it would hook into make's jobserver, but it is too easy to deadlock the build at the // packaging stage (all jobs are started at once, consuming all available slots as part of general // parallelism, and then each job waiting for an additional job token but since all jobs are in -// waiting stage: you have a dealock) +// waiting stage: you have a deadlock). // That in turn is an advantage for a simple approach with separate lock and release commands, since // everything is started at once, and all jobs that will be queued are all jobs that use the helper, // there will be jobs in waiting state and keeping the semaphore active as long as it matters.