aboutsummaryrefslogtreecommitdiff
path: root/guix/self.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2021-07-09 17:32:05 +0200
committerLudovic Courtès <ludo@gnu.org>2021-07-09 17:33:46 +0200
commitcf88c967afbf15c58efb0ba37d6638f1be9a0481 (patch)
tree1c7322d7c8f095c06a0b854fd2774e155e9d64dd /guix/self.scm
parent609e66e45fb0de22cb0fd0a55c8a56eccc33299e (diff)
downloadguix-cf88c967afbf15c58efb0ba37d6638f1be9a0481.tar
guix-cf88c967afbf15c58efb0ba37d6638f1be9a0481.tar.gz
self: Remove stale comment about "mmap(PROT_NONE) failed" crash.
This crash was fixed by 0aef94e7bcbd272720f14c5343f74da5201ef90a, itself a followup to 47d48f0c43c13c0b43bc3e37b6239efd4bf2f74c. * guix/self.scm (translate-texi-manuals)[build]: Remove reference to the PROT_NONE bug.
Diffstat (limited to 'guix/self.scm')
-rw-r--r--guix/self.scm5
1 files changed, 2 insertions, 3 deletions
diff --git a/guix/self.scm b/guix/self.scm
index 87d00ea64f..530632db7d 100644
--- a/guix/self.scm
+++ b/guix/self.scm
@@ -407,9 +407,8 @@ a list of extra files, such as '(\"contributing\")."
"\\.[a-z]{2}(_[A-Z]{2})?\\.po$")))
(define parallel-jobs
- ;; Limit thread creation by 'n-par-for-each'. Going beyond can
- ;; lead libgc 8.0.4 to abort with:
- ;; mmap(PROT_NONE) failed
+ ;; Limit thread creation by 'n-par-for-each', mostly to put an
+ ;; upper bound on memory usage.
(min (parallel-job-count) 4))
(mkdir #$output)