linux-container: Add comment on exception handling.
* gnu/build/linux-container.scm (run-container): Add note about writing the exceptions.
This commit is contained in:
parent
168aba2978
commit
36c4917c91
|
@ -235,6 +235,8 @@ host user identifiers to map into the user namespace."
|
||||||
namespaces)))
|
namespaces)))
|
||||||
(lambda args
|
(lambda args
|
||||||
;; Forward the exception to the parent process.
|
;; Forward the exception to the parent process.
|
||||||
|
;; FIXME: SRFI-35 conditions and non-trivial objects
|
||||||
|
;; cannot be 'read' so they shouldn't be written as is.
|
||||||
(write args child)
|
(write args child)
|
||||||
(primitive-exit 3))))
|
(primitive-exit 3))))
|
||||||
;; TODO: Manage capabilities.
|
;; TODO: Manage capabilities.
|
||||||
|
|
Loading…
Reference in New Issue