Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
guix-hpc
guix-kernel
Commits
1840c759
Commit
1840c759
authored
Jul 06, 2021
by
Ludovic Courtès
Browse files
kernel: Buffer the output and error ports.
* guix-jupyter-kernel.scm <top level>: Add 'setvbuf' calls.
parent
a887e449
Changes
1
Hide whitespace changes
Inline
Side-by-side
guix-jupyter-kernel.scm
View file @
1840c759
...
...
@@ -735,6 +735,9 @@ environment ~s (PID ~s)~%"
(
sigaction
SIGTERM
(
exit-handler
kernel
))
(
sigaction
SIGINT
(
exit-handler
kernel
))
(
setvbuf
(
current-output-port
)
'line
)
(
setvbuf
(
current-error-port
)
'line
)
(
format/log
"Guix kernel started (PID ~a)~%"
(
getpid
))
(
with-store
store
;; Enable "build traces" so we can use (guix status) to track build and
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment