Skip to content
Snippets Groups Projects
Unverified Commit 6374633b authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

store: Increase buffering for the '%stderr-write' upcall.

* guix/store.scm (process-stderr) <%stderr-write>: Pass #:buffer-size to
'dump-port'.
parent 9a8f9f84
No related branches found
No related tags found
No related merge requests found
......@@ -470,7 +470,8 @@ (define %stderr-error #x63787470) ; "cxtp", error reporting
;; Write a byte stream to USER-PORT.
(let* ((len (read-int p))
(m (modulo len 8)))
(dump-port p user-port len)
(dump-port p user-port len
#:buffer-size (if (<= len 16384) 16384 65536))
(unless (zero? m)
;; Consume padding, as for strings.
(get-bytevector-n p (- 8 m))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment