summaryrefslogtreecommitdiff
path: root/gnu/build/linux-container.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2015-10-28 15:30:31 +0100
committerLudovic Courtès <ludo@gnu.org>2015-10-28 15:31:44 +0100
commit35b50a753563c03a57d98761d7ebff12efdd5c3d (patch)
tree01d55d028f9831f8ba1bc47bafd5cc4d91bf5849 /gnu/build/linux-container.scm
parentfb4bf72be3fbc23bca35ba4b842b7e1517ef0e3a (diff)
container: Remove unnecessary CLONE_CHILD_* flags.
* gnu/build/linux-container.scm (namespaces->bit-mask): Remove CLONE_CHILD_CLEARTID and CLONE_CHILD_SETTID, which are unneeded. Discussed at <http://bugs.gnu.org/21694>.
Diffstat (limited to 'gnu/build/linux-container.scm')
-rw-r--r--gnu/build/linux-container.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/build/linux-container.scm b/gnu/build/linux-container.scm
index e9114940586..556422bc38f 100644
--- a/gnu/build/linux-container.scm
+++ b/gnu/build/linux-container.scm
@@ -165,7 +165,7 @@ host user identifiers to map into the user namespace."
165 "Return the number suitable for the 'flags' argument of 'clone' that 165 "Return the number suitable for the 'flags' argument of 'clone' that
166corresponds to the symbols in NAMESPACES." 166corresponds to the symbols in NAMESPACES."
167 ;; Use the same flags as fork(3) in addition to the namespace flags. 167 ;; Use the same flags as fork(3) in addition to the namespace flags.
168 (apply logior SIGCHLD CLONE_CHILD_CLEARTID CLONE_CHILD_SETTID 168 (apply logior SIGCHLD
169 (map (match-lambda 169 (map (match-lambda
170 ('mnt CLONE_NEWNS) 170 ('mnt CLONE_NEWNS)
171 ('uts CLONE_NEWUTS) 171 ('uts CLONE_NEWUTS)