unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH 01/15] build: syscalls: Add additional mount flags.
@ 2015-07-06 13:16 David Thompson
  2015-07-06 13:16 ` [PATCH 02/15] build: syscalls: Add unmount flags David Thompson
                   ` (14 more replies)
  0 siblings, 15 replies; 65+ messages in thread
From: David Thompson @ 2015-07-06 13:16 UTC (permalink / raw)
  To: guix-devel; +Cc: David Thompson

From: David Thompson <davet@gnu.org>

* guix/build/syscalls.scm (MS_NOSUID, MS_NODEV, MS_NOEXEC, MS_STRICTATIME):
  New variables.
---
 guix/build/syscalls.scm | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

diff --git a/guix/build/syscalls.scm b/guix/build/syscalls.scm
index 3585bf2..ec1ce89 100644
--- a/guix/build/syscalls.scm
+++ b/guix/build/syscalls.scm
@@ -1,5 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2015 David Thompson <davet@gnu.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -26,9 +27,13 @@
   #:use-module (ice-9 ftw)
   #:export (errno
             MS_RDONLY
+            MS_NOSUID
+            MS_NODEV
+            MS_NOEXEC
             MS_REMOUNT
             MS_BIND
             MS_MOVE
+            MS_STRICTATIME
             restart-on-EINTR
             mount
             umount
@@ -136,10 +141,14 @@
                 entries))))
 
 ;; Linux mount flags, from libc's <sys/mount.h>.
-(define MS_RDONLY      1)
-(define MS_REMOUNT    32)
-(define MS_BIND     4096)
-(define MS_MOVE     8192)
+(define MS_RDONLY             1)
+(define MS_NOSUID             2)
+(define MS_NODEV              4)
+(define MS_NOEXEC             8)
+(define MS_REMOUNT           32)
+(define MS_BIND            4096)
+(define MS_MOVE            8192)
+(define MS_STRICTATIME 16777216)
 
 (define mount
   (let* ((ptr  (dynamic-func "mount" (dynamic-link)))
-- 
2.4.3

^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [PATCH 02/15] build: syscalls: Add unmount flags.
  2015-07-06 13:16 [PATCH 01/15] build: syscalls: Add additional mount flags David Thompson
@ 2015-07-06 13:16 ` David Thompson
  2015-07-07 14:50   ` Ludovic Courtès
  2015-07-06 13:16 ` [PATCH 03/15] build: syscalls: Add mkdtemp! David Thompson
                   ` (13 subsequent siblings)
  14 siblings, 1 reply; 65+ messages in thread
From: David Thompson @ 2015-07-06 13:16 UTC (permalink / raw)
  To: guix-devel; +Cc: David Thompson

From: David Thompson <davet@gnu.org>

* guix/build/syscalls.scm (MNT_FORCE, MNT_DETACH, MNT_EXPIRE)
  (UMOUNT_NOFOLLOW): New variables.
---
 guix/build/syscalls.scm | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/guix/build/syscalls.scm b/guix/build/syscalls.scm
index ec1ce89..6d31510 100644
--- a/guix/build/syscalls.scm
+++ b/guix/build/syscalls.scm
@@ -34,6 +34,10 @@
             MS_BIND
             MS_MOVE
             MS_STRICTATIME
+            MNT_FORCE
+            MNT_DETACH
+            MNT_EXPIRE
+            UMOUNT_NOFOLLOW
             restart-on-EINTR
             mount
             umount
@@ -150,6 +154,11 @@
 (define MS_MOVE            8192)
 (define MS_STRICTATIME 16777216)
 
+(define MNT_FORCE       1)
+(define MNT_DETACH      2)
+(define MNT_EXPIRE      4)
+(define UMOUNT_NOFOLLOW 8)
+
 (define mount
   (let* ((ptr  (dynamic-func "mount" (dynamic-link)))
          (proc (pointer->procedure int ptr `(* * * ,unsigned-long *))))
-- 
2.4.3

^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [PATCH 03/15] build: syscalls: Add mkdtemp!
  2015-07-06 13:16 [PATCH 01/15] build: syscalls: Add additional mount flags David Thompson
  2015-07-06 13:16 ` [PATCH 02/15] build: syscalls: Add unmount flags David Thompson
@ 2015-07-06 13:16 ` David Thompson
  2015-07-07 13:15   ` Ludovic Courtès
  2015-07-06 13:16 ` [PATCH 04/15] utils: Add call-with-temporary-directory David Thompson
                   ` (12 subsequent siblings)
  14 siblings, 1 reply; 65+ messages in thread
From: David Thompson @ 2015-07-06 13:16 UTC (permalink / raw)
  To: guix-devel; +Cc: David Thompson

From: David Thompson <davet@gnu.org>

* guix/build/syscalls.scm (mkdtemp!): New procedure.
* tests/syscalls.scm: Test it.
---
 guix/build/syscalls.scm | 15 +++++++++++++++
 tests/syscalls.scm      |  9 +++++++++
 2 files changed, 24 insertions(+)

diff --git a/guix/build/syscalls.scm b/guix/build/syscalls.scm
index 6d31510..a464040 100644
--- a/guix/build/syscalls.scm
+++ b/guix/build/syscalls.scm
@@ -45,6 +45,7 @@
             swapon
             swapoff
             processes
+            mkdtemp!
 
             IFF_UP
             IFF_BROADCAST
@@ -265,6 +266,20 @@ user-land process."
                     (scandir "/proc"))
         <))
 
+(define mkdtemp!
+  (let* ((ptr  (dynamic-func "mkdtemp" (dynamic-link)))
+         (proc (pointer->procedure '* ptr '(*))))
+    (lambda (tmpl)
+      "Create a new unique directory in the file system using the template
+string TMPL and return its file name.  TMPL must end with 'XXXXXX'."
+      (let ((result (proc (string->pointer tmpl)))
+            (err    (errno)))
+        (when (null-pointer? result)
+          (throw 'system-error "mkdtemp!" "~S: ~A"
+                 (list tmpl (strerror err))
+                 (list err)))
+        (pointer->string result)))))
+
 \f
 ;;;
 ;;; Packed structures.
diff --git a/tests/syscalls.scm b/tests/syscalls.scm
index 706f3df..049ca93 100644
--- a/tests/syscalls.scm
+++ b/tests/syscalls.scm
@@ -1,5 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2015 David Thompson <davet@gnu.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -67,6 +68,14 @@
     (lambda args
       (memv (system-error-errno args) (list EPERM EINVAL ENOENT)))))
 
+(test-assert "mkdtemp!"
+  (let* ((tmp (or (getenv "TMPDIR") "/tmp"))
+         (dir (mkdtemp! (string-append tmp "/guix-test-XXXXXX"))))
+    (and (file-exists? dir)
+         (begin
+           (rmdir dir)
+           #t))))
+
 (test-assert "all-network-interfaces"
   (match (all-network-interfaces)
     (((? string? names) ..1)
-- 
2.4.3

^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [PATCH 04/15] utils: Add call-with-temporary-directory.
  2015-07-06 13:16 [PATCH 01/15] build: syscalls: Add additional mount flags David Thompson
  2015-07-06 13:16 ` [PATCH 02/15] build: syscalls: Add unmount flags David Thompson
  2015-07-06 13:16 ` [PATCH 03/15] build: syscalls: Add mkdtemp! David Thompson
@ 2015-07-06 13:16 ` David Thompson
  2015-07-07 13:15   ` Ludovic Courtès
  2015-07-06 13:16 ` [PATCH 05/15] build: syscalls: Add clone syscall wrapper David Thompson
                   ` (11 subsequent siblings)
  14 siblings, 1 reply; 65+ messages in thread
From: David Thompson @ 2015-07-06 13:16 UTC (permalink / raw)
  To: guix-devel; +Cc: David Thompson

From: David Thompson <davet@gnu.org>

* guix/utils.scm (call-with-temporary-directory): New procedure.
---
 guix/utils.scm | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/guix/utils.scm b/guix/utils.scm
index a2ade2b..44913c6 100644
--- a/guix/utils.scm
+++ b/guix/utils.scm
@@ -30,7 +30,7 @@
   #:use-module (rnrs bytevectors)
   #:use-module ((rnrs io ports) #:select (put-bytevector))
   #:use-module ((guix build utils) #:select (dump-port))
-  #:use-module ((guix build syscalls) #:select (errno))
+  #:use-module ((guix build syscalls) #:select (errno mkdtemp!))
   #:use-module (ice-9 vlist)
   #:use-module (ice-9 format)
   #:autoload   (ice-9 popen)  (open-pipe*)
@@ -77,6 +77,7 @@
             file-extension
             file-sans-extension
             call-with-temporary-output-file
+            call-with-temporary-directory
             with-atomic-file-output
             fold2
             fold-tree
@@ -652,6 +653,19 @@ call."
         (false-if-exception (close out))
         (false-if-exception (delete-file template))))))
 
+(define (call-with-temporary-directory proc)
+  "Call PROC with a name of a temporary directory; close the directory and
+delete it when leaving the dynamic extent of this call."
+  (let* ((directory (or (getenv "TMPDIR") "/tmp"))
+         (template  (string-append directory "/guix-directory.XXXXXX"))
+         (tmp-dir   (mkdtemp! template)))
+    (dynamic-wind
+      (const #t)
+      (lambda ()
+        (proc tmp-dir))
+      (lambda ()
+        (false-if-exception (rmdir tmp-dir))))))
+
 (define (with-atomic-file-output file proc)
   "Call PROC with an output port for the file that is going to replace FILE.
 Upon success, FILE is atomically replaced by what has been written to the
-- 
2.4.3

^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [PATCH 05/15] build: syscalls: Add clone syscall wrapper.
  2015-07-06 13:16 [PATCH 01/15] build: syscalls: Add additional mount flags David Thompson
                   ` (2 preceding siblings ...)
  2015-07-06 13:16 ` [PATCH 04/15] utils: Add call-with-temporary-directory David Thompson
@ 2015-07-06 13:16 ` David Thompson
  2015-07-07 13:23   ` Ludovic Courtès
  2015-07-06 13:16 ` [PATCH 06/15] build: syscalls: Add setns " David Thompson
                   ` (10 subsequent siblings)
  14 siblings, 1 reply; 65+ messages in thread
From: David Thompson @ 2015-07-06 13:16 UTC (permalink / raw)
  To: guix-devel; +Cc: David Thompson

From: David Thompson <davet@gnu.org>

* guix/build/syscalls.scm (clone): New procedure.
  (CLONE_NEWNS, CLONE_NEWUTS, CLONE_NEWIPC, CLONE_NEWUSER, CLONE_NEWPID,
  CLONE_NEWNET): New variables.
* tests/syscalls.scm: Test it.
---
 guix/build/syscalls.scm | 31 +++++++++++++++++++++++++++++++
 tests/syscalls.scm      | 15 +++++++++++++++
 2 files changed, 46 insertions(+)

diff --git a/guix/build/syscalls.scm b/guix/build/syscalls.scm
index a464040..1e5b3f7 100644
--- a/guix/build/syscalls.scm
+++ b/guix/build/syscalls.scm
@@ -47,6 +47,14 @@
             processes
             mkdtemp!
 
+            CLONE_NEWNS
+            CLONE_NEWUTS
+            CLONE_NEWIPC
+            CLONE_NEWUSER
+            CLONE_NEWPID
+            CLONE_NEWNET
+            clone
+
             IFF_UP
             IFF_BROADCAST
             IFF_LOOPBACK
@@ -280,6 +288,29 @@ string TMPL and return its file name.  TMPL must end with 'XXXXXX'."
                  (list err)))
         (pointer->string result)))))
 
+;; Linux clone flags, from linux/sched.h
+(define CLONE_NEWNS   #x00020000)
+(define CLONE_NEWUTS  #x04000000)
+(define CLONE_NEWIPC  #x08000000)
+(define CLONE_NEWUSER #x10000000)
+(define CLONE_NEWPID  #x20000000)
+(define CLONE_NEWNET  #x40000000)
+
+;; The libc interface to sys_clone is not useful for Scheme programs, so the
+;; low-level system call is wrapped instead.
+(define clone
+  (let* ((ptr        (dynamic-func "syscall" (dynamic-link)))
+         (proc       (pointer->procedure int ptr (list int int '*)))
+         ;; TODO: Handle all supported architectures
+         (syscall-id (match (utsname:machine (uname))
+                       ("x86_64" 56)
+                       (_        120))))
+    (lambda (flags)
+      "Create a new child process by duplicating the current parent process.
+Unlike the fork system call, clone accepts FLAGS that specify which resources
+are shared between the parent and child processes."
+      (proc syscall-id flags %null-pointer))))
+
 \f
 ;;;
 ;;; Packed structures.
diff --git a/tests/syscalls.scm b/tests/syscalls.scm
index 049ca93..9902279 100644
--- a/tests/syscalls.scm
+++ b/tests/syscalls.scm
@@ -76,6 +76,21 @@
            (rmdir dir)
            #t))))
 
+(define (user-namespace pid)
+  (match pid
+    ("self" "/proc/self/ns/user")
+    ((and (? number?) (= number->string pid))
+     (string-append "/proc/" pid "/ns/user"))))
+
+(test-assert "clone"
+  (match (clone (logior CLONE_NEWUSER))
+    (0 (primitive-exit 0))
+    (pid
+     ;; Check if user namespaces are different.
+     (not (equal? (readlink (user-namespace pid))
+                  (readlink (user-namespace "self")))))))
+
+
 (test-assert "all-network-interfaces"
   (match (all-network-interfaces)
     (((? string? names) ..1)
-- 
2.4.3

^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [PATCH 06/15] build: syscalls: Add setns syscall wrapper.
  2015-07-06 13:16 [PATCH 01/15] build: syscalls: Add additional mount flags David Thompson
                   ` (3 preceding siblings ...)
  2015-07-06 13:16 ` [PATCH 05/15] build: syscalls: Add clone syscall wrapper David Thompson
@ 2015-07-06 13:16 ` David Thompson
  2015-07-07 13:28   ` Ludovic Courtès
  2015-07-06 13:16 ` [PATCH 07/15] build: syscalls: Add pivot-root David Thompson
                   ` (9 subsequent siblings)
  14 siblings, 1 reply; 65+ messages in thread
From: David Thompson @ 2015-07-06 13:16 UTC (permalink / raw)
  To: guix-devel; +Cc: David Thompson

From: David Thompson <davet@gnu.org>

* guix/build/syscalls.scm (setns): New procedure.
* tests/syscalls.scm: Test it.
---
 guix/build/syscalls.scm | 15 +++++++++++++++
 tests/syscalls.scm      | 21 +++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/guix/build/syscalls.scm b/guix/build/syscalls.scm
index 1e5b3f7..827a79d 100644
--- a/guix/build/syscalls.scm
+++ b/guix/build/syscalls.scm
@@ -54,6 +54,7 @@
             CLONE_NEWPID
             CLONE_NEWNET
             clone
+            setns
 
             IFF_UP
             IFF_BROADCAST
@@ -311,6 +312,20 @@ Unlike the fork system call, clone accepts FLAGS that specify which resources
 are shared between the parent and child processes."
       (proc syscall-id flags %null-pointer))))
 
+(define setns
+  (let* ((ptr  (dynamic-func "setns" (dynamic-link)))
+         (proc (pointer->procedure int ptr (list int int))))
+    (lambda (fdes nstype)
+      "Reassociate the current process with the namespace specified by FDES.
+NSTYPE specifies which type of namespace the current process may be
+reassociated with, or 0 if there is no such limitation."
+      (let ((ret (proc fdes nstype))
+            (err (errno)))
+        (unless (zero? ret)
+          (throw 'system-error "setns" "~d ~d: ~A"
+                 (list fdes nstype (strerror err))
+                 (list err)))))))
+
 \f
 ;;;
 ;;; Packed structures.
diff --git a/tests/syscalls.scm b/tests/syscalls.scm
index 9902279..80d2788 100644
--- a/tests/syscalls.scm
+++ b/tests/syscalls.scm
@@ -90,6 +90,27 @@
      (not (equal? (readlink (user-namespace pid))
                   (readlink (user-namespace "self")))))))
 
+(test-assert "setns"
+  (match (clone (logior CLONE_NEWUSER))
+    (0 (primitive-exit 0))
+    (clone-pid
+     (match (pipe)
+       ((in . out)
+        (match (primitive-fork)
+          (0
+           (close in)
+           (call-with-input-file (user-namespace clone-pid)
+             (lambda (port)
+               (setns (port->fdes port) 0)))
+           (write 'done out)
+           (close out)
+           (primitive-exit 0))
+          (fork-pid
+           (close out)
+           ;; Wait for the child process to join the namespace.
+           (read in)
+           (equal? (readlink (user-namespace clone-pid))
+                   (readlink (user-namespace fork-pid))))))))))
 
 (test-assert "all-network-interfaces"
   (match (all-network-interfaces)
-- 
2.4.3

^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [PATCH 07/15] build: syscalls: Add pivot-root.
  2015-07-06 13:16 [PATCH 01/15] build: syscalls: Add additional mount flags David Thompson
                   ` (4 preceding siblings ...)
  2015-07-06 13:16 ` [PATCH 06/15] build: syscalls: Add setns " David Thompson
@ 2015-07-06 13:16 ` David Thompson
  2015-07-07 13:35   ` Ludovic Courtès
  2015-07-06 13:16 ` [PATCH 08/15] gnu: build: Add Linux container module David Thompson
                   ` (8 subsequent siblings)
  14 siblings, 1 reply; 65+ messages in thread
From: David Thompson @ 2015-07-06 13:16 UTC (permalink / raw)
  To: guix-devel; +Cc: David Thompson

From: David Thompson <davet@gnu.org>

* guix/build/syscalls.scm (pivot-root): New procedure.
* tests/syscalls.scm: Test it.
---
 guix/build/syscalls.scm | 15 +++++++++++++++
 tests/syscalls.scm      | 24 ++++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/guix/build/syscalls.scm b/guix/build/syscalls.scm
index 827a79d..e319368 100644
--- a/guix/build/syscalls.scm
+++ b/guix/build/syscalls.scm
@@ -46,6 +46,7 @@
             swapoff
             processes
             mkdtemp!
+            pivot-root
 
             CLONE_NEWNS
             CLONE_NEWUTS
@@ -326,6 +327,20 @@ reassociated with, or 0 if there is no such limitation."
                  (list fdes nstype (strerror err))
                  (list err)))))))
 
+(define pivot-root
+  (let* ((ptr  (dynamic-func "pivot_root" (dynamic-link)))
+         (proc (pointer->procedure int ptr (list '* '*))))
+    (lambda (new-root put-old)
+      "Change the root file system to NEW-ROOT and move the current root file
+system to PUT-OLD."
+      (let ((ret (proc (string->pointer new-root)
+                       (string->pointer put-old)))
+            (err (errno)))
+        (unless (zero? ret)
+          (throw 'system-error "pivot_root" "~S ~S: ~A"
+                 (list new-root put-old (strerror err))
+                 (list err)))))))
+
 \f
 ;;;
 ;;; Packed structures.
diff --git a/tests/syscalls.scm b/tests/syscalls.scm
index 80d2788..e34d37d 100644
--- a/tests/syscalls.scm
+++ b/tests/syscalls.scm
@@ -18,6 +18,7 @@
 ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (test-syscalls)
+  #:use-module (guix utils)
   #:use-module (guix build syscalls)
   #:use-module (srfi srfi-1)
   #:use-module (srfi srfi-26)
@@ -112,6 +113,29 @@
            (equal? (readlink (user-namespace clone-pid))
                    (readlink (user-namespace fork-pid))))))))))
 
+(test-assert "pivot-root"
+  (match (pipe)
+    ((in . out)
+     (match (clone (logior CLONE_NEWUSER CLONE_NEWNS))
+       (0
+        (close in)
+        (call-with-temporary-directory
+         (lambda (root)
+           (let ((put-old (string-append root "/real-root")))
+             (mount "none" root "tmpfs")
+             (mkdir put-old)
+             (call-with-output-file (string-append root "/test")
+               (lambda (port)
+                 (display "testing\n" port)))
+             (pivot-root root put-old)
+             ;; The test file should now be located inside the root directory.
+             (write (file-exists "/test") out)
+             (close out))))
+        (primitive-exit 0))
+       (pid
+        (close out)
+        (read in))))))
+
 (test-assert "all-network-interfaces"
   (match (all-network-interfaces)
     (((? string? names) ..1)
-- 
2.4.3

^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [PATCH 08/15] gnu: build: Add Linux container module.
  2015-07-06 13:16 [PATCH 01/15] build: syscalls: Add additional mount flags David Thompson
                   ` (5 preceding siblings ...)
  2015-07-06 13:16 ` [PATCH 07/15] build: syscalls: Add pivot-root David Thompson
@ 2015-07-06 13:16 ` David Thompson
  2015-07-07 13:51   ` Ludovic Courtès
  2015-07-06 13:16 ` [PATCH 09/15] gnu: system: Move <file-system-mapping> into (gnu system file-systems) David Thompson
                   ` (7 subsequent siblings)
  14 siblings, 1 reply; 65+ messages in thread
From: David Thompson @ 2015-07-06 13:16 UTC (permalink / raw)
  To: guix-devel; +Cc: David Thompson

From: David Thompson <davet@gnu.org>

* gnu/build/linux-container.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* .dir-locals.el: Add Scheme indent rules for 'call-with-clone', 'with-clone',
  'call-with-container', and 'container-excursion'.
* tests/containers.scm: New file.
* Makefile.am (SCM_TESTS): Add it.
---
 .dir-locals.el                |   5 +
 Makefile.am                   |   3 +-
 gnu-system.am                 |   1 +
 gnu/build/linux-container.scm | 299 ++++++++++++++++++++++++++++++++++++++++++
 tests/containers.scm          | 111 ++++++++++++++++
 5 files changed, 418 insertions(+), 1 deletion(-)
 create mode 100644 gnu/build/linux-container.scm
 create mode 100644 tests/containers.scm

diff --git a/.dir-locals.el b/.dir-locals.el
index cbcb120..65e1c6d 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -59,6 +59,11 @@
    (eval . (put 'run-with-state 'scheme-indent-function 1))
    (eval . (put 'wrap-program 'scheme-indent-function 1))
 
+   (eval . (put 'call-with-clone 'scheme-indent-function 1))
+   (eval . (put 'with-clone 'scheme-indent-function 1))
+   (eval . (put 'call-with-container 'scheme-indent-function 1))
+   (eval . (put 'container-excursion 'scheme-indent-function 1))
+
    ;; Recognize '~', '+', and '$', as used for gexps, as quotation symbols.
    ;; This notably allows '(' in Paredit to not insert a space when the
    ;; preceding symbol is one of these.
diff --git a/Makefile.am b/Makefile.am
index cc0b135..569ea6f 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -196,7 +196,8 @@ SCM_TESTS =					\
   tests/gremlin.scm				\
   tests/lint.scm				\
   tests/publish.scm				\
-  tests/size.scm
+  tests/size.scm				\
+  tests/containers.scm
 
 if HAVE_GUILE_JSON
 
diff --git a/gnu-system.am b/gnu-system.am
index 7e25f6f..48dbc5f 100644
--- a/gnu-system.am
+++ b/gnu-system.am
@@ -356,6 +356,7 @@ GNU_SYSTEM_MODULES =				\
   gnu/build/file-systems.scm			\
   gnu/build/install.scm				\
   gnu/build/linux-boot.scm			\
+  gnu/build/linux-container.scm			\
   gnu/build/linux-initrd.scm			\
   gnu/build/linux-modules.scm			\
   gnu/build/vm.scm
diff --git a/gnu/build/linux-container.scm b/gnu/build/linux-container.scm
new file mode 100644
index 0000000..60deca2
--- /dev/null
+++ b/gnu/build/linux-container.scm
@@ -0,0 +1,299 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2015 David Thompson <davet@gnu.org>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu build linux-container)
+  #:use-module (ice-9 format)
+  #:use-module (ice-9 match)
+  #:use-module (srfi srfi-98)
+  #:use-module (guix utils)
+  #:use-module (guix build utils)
+  #:use-module (guix build syscalls)
+  #:export (%namespaces
+            run-container
+            call-with-container
+            container-excursion))
+
+(define %namespaces
+  '(mnt pid ipc uts user net))
+
+(define (call-with-clean-exit thunk)
+  "Apply THUNK, but exit with a status code of 1 if it fails."
+  (dynamic-wind
+    (const #t)
+    thunk
+    (lambda ()
+      (primitive-exit 1))))
+
+(define (mount-flags->bit-mask flags)
+  "Return the number suitable for the 'flags' argument of 'mount' that
+corresponds to the symbols listed in FLAGS."
+  (let loop ((flags flags))
+    (match flags
+      (('read-only rest ...)
+       (logior MS_RDONLY (loop rest)))
+      (('bind-mount rest ...)
+       (logior MS_BIND (loop rest)))
+      (('no-suid rest ...)
+       (logior MS_NOSUID (loop rest)))
+      (('no-dev rest ...)
+       (logior MS_NODEV (loop rest)))
+      (('no-exec rest ...)
+       (logior MS_NOEXEC (loop rest)))
+      (()
+       0))))
+
+(define* (mount-file-system spec root)
+  "Mount the file system described by SPEC under ROOT.  SPEC must have the
+form:
+
+  (DEVICE TITLE MOUNT-POINT TYPE (FLAGS ...) OPTIONS CHECK?)
+
+DEVICE, MOUNT-POINT, and TYPE must be strings; OPTIONS can be a string or #f;
+FLAGS must be a list of symbols.  CHECK? is ignored."
+  (match spec
+    ((source title mount-point type (flags ...) options _)
+     (let ((mount-point (string-append root mount-point))
+           (flags       (mount-flags->bit-mask flags)))
+       (mkdir-p mount-point)
+       (mount source mount-point type flags options)
+
+       ;; For read-only bind mounts, an extra remount is needed, as per
+       ;; <http://lwn.net/Articles/281157/>, which still applies to Linux 4.0.
+       (when (and (= MS_BIND (logand flags MS_BIND))
+                  (= MS_RDONLY (logand flags MS_RDONLY)))
+         (let ((flags (logior MS_BIND MS_REMOUNT MS_RDONLY)))
+           (mount source mount-point type flags #f)))))))
+
+(define (purify-environment)
+  "Unset all environment variables."
+  (for-each unsetenv
+            (match (get-environment-variables)
+              (((names . _) ...) names))))
+
+;; The container setup procedure closely resembles that of the Docker
+;; specification:
+;; https://raw.githubusercontent.com/docker/libcontainer/master/SPEC.md
+(define* (mount-file-systems root mounts #:key mount-/sys? mount-/proc?)
+  "Mount the essential file systems and the those in the MOUNTS list relative
+to ROOT, then make ROOT the new root directory for the process."
+  (define (scope dir)
+    (string-append root dir))
+
+  (define (bind-mount src dest)
+    (mount src dest "none" MS_BIND))
+
+  ;; Like mount, but creates the mount point if it doesn't exist.
+  (define* (mount* source target type #:optional (flags 0) options
+                   #:key (update-mtab? #f))
+    (mkdir-p target)
+    (mount source target type flags options #:update-mtab? update-mtab?))
+
+  ;; The container's file system is completely ephemeral, sans directories
+  ;; bind-mounted from the host.
+  (mount "none" root "tmpfs")
+
+  ;; A proc mount requires a new pid namespace.
+  (when mount-/proc?
+    (mount* "none" (scope "/proc") "proc"
+            (logior MS_NOEXEC MS_NOSUID MS_NODEV)))
+
+  ;; A sysfs mount requires the user to have the CAP_SYS_ADMIN capability in
+  ;; the current network namespace.
+  (when mount-/sys?
+    (mount* "none" (scope "/sys") "sysfs"
+            (logior MS_NOEXEC MS_NOSUID MS_NODEV MS_RDONLY)))
+
+  (mount* "none" (scope "/dev") "tmpfs"
+          (logior MS_NOEXEC MS_STRICTATIME)
+          "mode=755")
+
+  ;; Create essential device nodes via bind-mounting them from the
+  ;; host, because a process within a user namespace cannot create
+  ;; device nodes.
+  (for-each (lambda (device)
+              (when (file-exists? device)
+                ;; Create the mount point file.
+                (call-with-output-file (scope device)
+                  (const #t))
+                (bind-mount device (scope device))))
+            '("/dev/null"
+              "/dev/zero"
+              "/dev/full"
+              "/dev/random"
+              "/dev/urandom"
+              "/dev/tty"
+              "/dev/ptmx"
+              "/dev/fuse"))
+
+  ;; Setup standard input/output/error.
+  (symlink "/proc/self/fd"   (scope "/dev/fd"))
+  (symlink "/proc/self/fd/0" (scope "/dev/stdin"))
+  (symlink "/proc/self/fd/1" (scope "/dev/stdout"))
+  (symlink "/proc/self/fd/2" (scope "/dev/stderr"))
+
+  ;; Mount user-specified file systems.
+  (for-each (lambda (spec)
+              (mount-file-system spec root))
+            mounts)
+
+  ;; Jail the process inside the container's root file system.
+  (let ((put-old (string-append root "/real-root")))
+    (mkdir put-old)
+    (pivot-root root put-old)
+    (chdir "/")
+    (umount "real-root" MNT_DETACH)
+    (rmdir "real-root")))
+
+(define (initialize-user-namespace pid)
+  "Configure the user namespace for PID."
+  (define proc-dir
+    (string-append "/proc/" (number->string pid)))
+
+  (define (scope file)
+    (string-append proc-dir file))
+
+  ;; Only root can map more than a single uid/gid.  A range of 65536 uid/gids
+  ;; is used to cover 16 bits worth of users and groups, which is sufficient
+  ;; for most cases.
+  ;;
+  ;; See also: http://www.freedesktop.org/software/systemd/man/systemd-nspawn.html#--private-users=
+  (let* ((uid       (getuid))
+         (gid       (getgid))
+         (uid-range (if (zero? uid) 65536 1))
+         (gid-range (if (zero? gid) 65536 1)))
+
+    ;; Only root can write to the gid map without first disabling the
+    ;; setgroups syscall.
+    (unless (and (zero? uid) (zero? gid))
+      (call-with-output-file (scope "/setgroups")
+        (lambda (port)
+          (display "deny" port))))
+
+    ;; Map the user/group that created the container to the root user
+    ;; within the container.
+    (call-with-output-file (scope "/uid_map")
+      (lambda (port)
+        (format port "0 ~d ~d" uid uid-range)))
+    (call-with-output-file (scope "/gid_map")
+      (lambda (port)
+        (format port "0 ~d ~d" gid gid-range)))))
+
+(define (namespaces->bit-mask namespaces)
+  "Return the number suitable for the 'flags' argument of 'clone' that
+corresponds to the symbols in NAMESPACES."
+  (apply logior SIGCHLD
+         (map (match-lambda
+               ('mnt  CLONE_NEWNS)
+               ('uts  CLONE_NEWUTS)
+               ('ipc  CLONE_NEWIPC)
+               ('user CLONE_NEWUSER)
+               ('pid  CLONE_NEWPID)
+               ('net  CLONE_NEWNET))
+              namespaces)))
+
+(define (run-container root mounts namespaces thunk)
+  "Run THUNK in a new container process and return its PID.  ROOT specifies
+the root directory for the container.  MOUNTS is a list of file system specs
+that specify the mapping of host file systems into the container.  NAMESPACES
+is a list of symbols that correspond to the possible Linux namespaces: mnt,
+ipc, uts, user, and net."
+  ;; The parent process must initialize the user namespace for the child
+  ;; before it can boot.  To negotiate this, a pipe is used such that the
+  ;; child process blocks until the parent writes to it.
+  (match (pipe)
+    ((in . out)
+     (let ((flags (namespaces->bit-mask namespaces)))
+       (match (clone flags)
+         (0
+          (call-with-clean-exit
+           (lambda ()
+             (close out)
+             ;; Wait for parent to set things up.
+             (read in)
+             (close in)
+             (purify-environment)
+             (when (memq 'mnt namespaces)
+               (mount-file-systems root mounts
+                                   #:mount-/proc? (memq 'pid namespaces)
+                                   #:mount-/sys?  (memq 'net namespaces)))
+             ;; TODO: Manage capabilities.
+             (thunk))))
+         (pid
+          (when (memq 'user namespaces)
+            (initialize-user-namespace pid))
+          ;; TODO: Initialize cgroups.
+          (close in)
+          (write 'ready out)
+          (close out)
+          pid))))))
+
+(define* (call-with-container mounts thunk #:key (namespaces %namespaces))
+  "Run THUNK in a new container process and return its exit status.
+MOUNTS is a list of file system specs that specify the mapping of host file
+systems into the container.  NAMESPACES is a list of symbols corresponding to
+the identifiers for Linux namespaces: mnt, ipc, uts, pid, user, and net.  By
+default, all namespaces are used."
+  (call-with-temporary-directory
+   (lambda (root)
+     (let ((pid (run-container root mounts namespaces thunk)))
+       ;; Catch SIGINT and kill the container process.
+       (sigaction SIGINT
+         (lambda (signum)
+           (false-if-exception
+            (kill pid SIGKILL))))
+
+       (match (waitpid pid)
+         ((_ . status) status))))))
+
+(define (container-excursion pid thunk)
+  "Run THUNK as a child process within the namespaces of process PID and
+return the exit status."
+  (define (namespace-file pid namespace)
+    (string-append "/proc/" (number->string pid) "/ns/" namespace))
+
+  (define (fork+waitpid thunk)
+    (match (primitive-fork)
+      (0 (call-with-clean-exit thunk))
+      (pid
+       (match (waitpid pid)
+         ((_ . status)
+          (status:exit-val status))))))
+
+  (fork+waitpid
+   (lambda ()
+     (for-each (lambda (ns)
+                 (call-with-input-file (namespace-file (getpid) ns)
+                   (lambda (current-ns-port)
+                     (call-with-input-file (namespace-file pid ns)
+                       (lambda (new-ns-port)
+                         ;; Joining the namespace that the process
+                         ;; already belongs to would throw an error.
+                         (unless (= (port->fdes current-ns-port)
+                                    (port->fdes new-ns-port))
+                           (setns (port->fdes new-ns-port) 0)))))))
+               ;; It's important that the user namespace is joined first,
+               ;; so that the user will have the privileges to join the
+               ;; other namespaces.  Furthermore, it's important that the
+               ;; mount namespace is joined last, otherwise the /proc mount
+               ;; point would no longer be accessible.
+               '("user" "ipc" "uts" "net" "pid" "mnt"))
+     (purify-environment)
+     (chdir "/")
+     ;; Fork again so that the pid is within the context of the joined pid
+     ;; namespace instead of the original pid namespace.
+     (primitive-exit (fork+waitpid thunk)))))
diff --git a/tests/containers.scm b/tests/containers.scm
new file mode 100644
index 0000000..329f300
--- /dev/null
+++ b/tests/containers.scm
@@ -0,0 +1,111 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2015 David Thompson <davet@gnu.org>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (test-containers)
+  #:use-module (guix utils)
+  #:use-module (guix build syscalls)
+  #:use-module (gnu build linux-container)
+  #:use-module (srfi srfi-64)
+  #:use-module (ice-9 match))
+
+(define (assert-exit x)
+  (primitive-exit (if x 0 1)))
+
+(test-begin "containers")
+
+(test-assert "call-with-container, user namespace"
+  (zero?
+   (call-with-container '()
+     (lambda ()
+       ;; The user is root within the new user namespace.
+       (assert-exit (and (zero? (getuid)) (zero? (getgid)))))
+     #:namespaces '(user))))
+
+(test-assert "call-with-container, uts namespace"
+  (zero?
+   (call-with-container '()
+     (lambda ()
+       ;; The user is root within the container and should be able to change
+       ;; the hostname of that container.
+       (sethostname "test-container")
+       (primitive-exit 0))
+     #:namespaces '(user uts))))
+
+(test-assert "call-with-container, pid namespace"
+  (zero?
+   (call-with-container '()
+     (lambda ()
+       (match (primitive-fork)
+         (0
+          ;; The first forked process in the new pid namespace is pid 2.
+          (assert-exit (= 2 (getpid))))
+         (pid
+          (primitive-exit
+           (match (waitpid pid)
+             ((_ . status)
+              (status:exit-val status)))))))
+     #:namespaces '(user pid))))
+
+(test-assert "call-with-container, mnt namespace"
+  (zero?
+   (call-with-container '(("none" "" "/testing" "tmpfs" () "" #f))
+     (lambda ()
+       (assert-exit (file-exists? "/testing")))
+     #:namespaces '(user mnt))))
+
+(test-assert "call-with-container, all namespaces"
+  (zero?
+   (call-with-container '()
+     (lambda ()
+       (primitive-exit 0)))))
+
+(test-assert "container-excursion"
+  (call-with-temporary-directory
+   (lambda (root)
+     (match (pipe)
+       ((in . out)
+        (define (container)
+          (close out)
+          ;; Wait for test completion.
+          (read in)
+          (close in))
+
+        (define (namespaces pid)
+          (let ((pid (number->string pid)))
+            (map (lambda (ns)
+                   (readlink (string-append "/proc/" pid "/ns/" ns)))
+                 '("user" "ipc" "uts" "net" "pid" "mnt"))))
+
+        (let* ((pid (run-container root '() %namespaces container))
+               (container-namespaces (namespaces pid))
+               ;; Check that all of the namespace identifiers are the same as
+               ;; the container process.
+               (status (container-excursion pid
+                         (lambda ()
+                           (assert-exit
+                            (equal? container-namespaces
+                                    (namespaces (getpid))))))))
+          ;; Stop the container.
+          (write 'done out)
+          (close out)
+          (zero? status)))))))
+
+(test-end)
+
+\f
+(exit (= (test-runner-fail-count (test-runner-current)) 0))
-- 
2.4.3

^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [PATCH 09/15] gnu: system: Move <file-system-mapping> into (gnu system file-systems).
  2015-07-06 13:16 [PATCH 01/15] build: syscalls: Add additional mount flags David Thompson
                   ` (6 preceding siblings ...)
  2015-07-06 13:16 ` [PATCH 08/15] gnu: build: Add Linux container module David Thompson
@ 2015-07-06 13:16 ` David Thompson
  2015-07-07 13:51   ` Ludovic Courtès
  2015-07-06 13:16 ` [PATCH 10/15] gnu: system: Move file-system->spec to " David Thompson
                   ` (6 subsequent siblings)
  14 siblings, 1 reply; 65+ messages in thread
From: David Thompson @ 2015-07-06 13:16 UTC (permalink / raw)
  To: guix-devel; +Cc: David Thompson

From: David Thompson <davet@gnu.org>

* gnu/system/vm.scm (<file-system-mapping>, %store-mapping): Move from here...
* gnu/system/file-systems.scm: ...to here.
* guix/scripts/system.scm: Import (gnu system file-systems).
---
 gnu/system/file-systems.scm | 32 +++++++++++++++++++++++++++++++-
 gnu/system/vm.scm           | 22 ----------------------
 guix/scripts/system.scm     |  1 +
 3 files changed, 32 insertions(+), 23 deletions(-)

diff --git a/gnu/system/file-systems.scm b/gnu/system/file-systems.scm
index 05c77fe..cbaca88 100644
--- a/gnu/system/file-systems.scm
+++ b/gnu/system/file-systems.scm
@@ -52,7 +52,16 @@
             mapped-device-kind
             mapped-device-kind?
             mapped-device-kind-open
-            mapped-device-kind-close))
+            mapped-device-kind-close
+
+            <file-system-mapping>
+            file-system-mapping
+            file-system-mapping?
+            file-system-mapping-source
+            file-system-mapping-target
+            file-system-mapping-writable?
+
+            %store-mapping))
 
 ;;; Commentary:
 ;;;
@@ -199,4 +208,25 @@ file system."
   (close     mapped-device-kind-close             ;source target -> gexp
              (default (const #~(const #f)))))
 
+\f
+;;;
+;;; Shared file systems, for VMs/containers.
+;;;
+
+;; Mapping of host file system SOURCE to mount point TARGET in the guest.
+(define-record-type* <file-system-mapping> file-system-mapping
+  make-file-system-mapping
+  file-system-mapping?
+  (source    file-system-mapping-source)          ;string
+  (target    file-system-mapping-target)          ;string
+  (writable? file-system-mapping-writable?        ;Boolean
+             (default #f)))
+
+(define %store-mapping
+  ;; Mapping of the host's store into the guest.
+  (file-system-mapping
+   (source (%store-prefix))
+   (target (%store-prefix))
+   (writable? #f)))
+
 ;;; file-systems.scm ends here
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm
index e194ed6..690022d 100644
--- a/gnu/system/vm.scm
+++ b/gnu/system/vm.scm
@@ -58,12 +58,6 @@
             qemu-image
             system-qemu-image
 
-            file-system-mapping
-            file-system-mapping?
-            file-system-mapping-source
-            file-system-mapping-target
-            file-system-mapping-writable?
-
             system-qemu-image/shared-store
             system-qemu-image/shared-store-script
             system-disk-image))
@@ -354,22 +348,6 @@ of the GNU system as described by OS."
 ;;; VMs that share file systems with the host.
 ;;;
 
-;; Mapping of host file system SOURCE to mount point TARGET in the guest.
-(define-record-type* <file-system-mapping> file-system-mapping
-  make-file-system-mapping
-  file-system-mapping?
-  (source    file-system-mapping-source)          ;string
-  (target    file-system-mapping-target)          ;string
-  (writable? file-system-mapping-writable?        ;Boolean
-             (default #f)))
-
-(define %store-mapping
-  ;; Mapping of the host's store into the guest.
-  (file-system-mapping
-   (source (%store-prefix))
-   (target (%store-prefix))
-   (writable? #f)))
-
 (define (file-system->mount-tag fs)
   "Return a 9p mount tag for host file system FS."
   ;; QEMU mount tags cannot contain slashes and cannot start with '_'.
diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm
index aa9b3f8..6084ab8 100644
--- a/guix/scripts/system.scm
+++ b/guix/scripts/system.scm
@@ -30,6 +30,7 @@
   #:use-module (guix build utils)
   #:use-module (gnu build install)
   #:use-module (gnu system)
+  #:use-module (gnu system file-systems)
   #:use-module (gnu system vm)
   #:use-module (gnu system grub)
   #:use-module (gnu packages grub)
-- 
2.4.3

^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [PATCH 10/15] gnu: system: Move file-system->spec to (gnu system file-systems).
  2015-07-06 13:16 [PATCH 01/15] build: syscalls: Add additional mount flags David Thompson
                   ` (7 preceding siblings ...)
  2015-07-06 13:16 ` [PATCH 09/15] gnu: system: Move <file-system-mapping> into (gnu system file-systems) David Thompson
@ 2015-07-06 13:16 ` David Thompson
  2015-07-07 13:51   ` Ludovic Courtès
  2015-07-06 13:16 ` [PATCH 11/15] gnu: system: Add Linux container module David Thompson
                   ` (5 subsequent siblings)
  14 siblings, 1 reply; 65+ messages in thread
From: David Thompson @ 2015-07-06 13:16 UTC (permalink / raw)
  To: guix-devel; +Cc: David Thompson

From: David Thompson <davet@gnu.org>

* gnu/system/linux-initrd.scm (file-system->spec): Move this...
* gnu/system/file-systems.scm: ... to here.
---
 gnu/system/file-systems.scm | 10 ++++++++++
 gnu/system/linux-initrd.scm |  7 -------
 2 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/gnu/system/file-systems.scm b/gnu/system/file-systems.scm
index cbaca88..b33f826 100644
--- a/gnu/system/file-systems.scm
+++ b/gnu/system/file-systems.scm
@@ -17,6 +17,7 @@
 ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (gnu system file-systems)
+  #:use-module (ice-9 match)
   #:use-module (guix gexp)
   #:use-module (guix records)
   #:use-module (guix store)
@@ -33,6 +34,8 @@
             file-system-check?
             file-system-create-mount-point?
 
+            file-system->spec
+
             %fuse-control-file-system
             %binary-format-file-system
             %shared-memory-file-system
@@ -95,6 +98,13 @@ file system."
   (or (%file-system-needed-for-boot? fs)
       (string=? "/" (file-system-mount-point fs))))
 
+(define (file-system->spec fs)
+  "Return a list corresponding to file-system FS that can be passed to the
+initrd code."
+  (match fs
+    (($ <file-system> device title mount-point type flags options _ check?)
+     (list device title mount-point type flags options check?))))
+
 (define %fuse-control-file-system
   ;; Control file system for Linux' file systems in user-space (FUSE).
   (file-system
diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm
index 74dacf1..2b7ae71 100644
--- a/gnu/system/linux-initrd.scm
+++ b/gnu/system/linux-initrd.scm
@@ -132,13 +132,6 @@ MODULES and taken from LINUX."
                                 (guix elf)
                                 (gnu build linux-modules))))
 
-(define (file-system->spec fs)
-  "Return a list corresponding to file-system FS that can be passed to the
-initrd code."
-  (match fs
-    (($ <file-system> device title mount-point type flags options _ check?)
-     (list device title mount-point type flags options check?))))
-
 (define* (base-initrd file-systems
                       #:key
                       (linux linux-libre)
-- 
2.4.3

^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [PATCH 11/15] gnu: system: Add Linux container module.
  2015-07-06 13:16 [PATCH 01/15] build: syscalls: Add additional mount flags David Thompson
                   ` (8 preceding siblings ...)
  2015-07-06 13:16 ` [PATCH 10/15] gnu: system: Move file-system->spec to " David Thompson
@ 2015-07-06 13:16 ` David Thompson
  2015-07-07 13:55   ` Ludovic Courtès
  2015-07-06 13:16 ` [PATCH 12/15] gnu: system: Add Linux container file systems David Thompson
                   ` (4 subsequent siblings)
  14 siblings, 1 reply; 65+ messages in thread
From: David Thompson @ 2015-07-06 13:16 UTC (permalink / raw)
  To: guix-devel; +Cc: David Thompson

From: David Thompson <davet@gnu.org>

* gnu/system/linux-container.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* gnu/system.scm: Export 'operating-system-etc-directory',
  'operating-system-boot-script', 'operating-system-locale-directory', and
  'file-union'.
  (operating-system-boot-script): Add #:container? keyword argument.
  (operating-system-activation-script): Add #:container?  keyword argument.
  Don't call 'activate-firmware' or 'activate-ptrace-attach' when activating a
  container.
---
 gnu-system.am                  |  1 +
 gnu/system.scm                 | 27 ++++++++-----
 gnu/system/linux-container.scm | 90 ++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 109 insertions(+), 9 deletions(-)
 create mode 100644 gnu/system/linux-container.scm

diff --git a/gnu-system.am b/gnu-system.am
index 48dbc5f..cfc2999 100644
--- a/gnu-system.am
+++ b/gnu-system.am
@@ -346,6 +346,7 @@ GNU_SYSTEM_MODULES =				\
   gnu/system/grub.scm				\
   gnu/system/install.scm			\
   gnu/system/linux.scm				\
+  gnu/system/linux-container.scm		\
   gnu/system/linux-initrd.scm			\
   gnu/system/locale.scm				\
   gnu/system/nss.scm				\
diff --git a/gnu/system.scm b/gnu/system.scm
index 82b7fbc..476d901 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -82,6 +82,11 @@
             operating-system-derivation
             operating-system-profile
             operating-system-grub.cfg
+            operating-system-etc-directory
+            operating-system-locale-directory
+            operating-system-boot-script
+
+            file-union
 
             local-host-aliases
             %setuid-programs
@@ -679,7 +684,7 @@ variable is not set---hence the need for this wrapper."
                       (apply execl #$modprobe
                              (cons #$modprobe (cdr (command-line))))))))
 
-(define (operating-system-activation-script os)
+(define* (operating-system-activation-script os #:key container?)
   "Return the activation script for OS---i.e., the code that \"activates\" the
 stateful part of OS, including user accounts and groups, special directories,
 etc."
@@ -752,12 +757,15 @@ etc."
                     ;; Tell the kernel to use our 'modprobe' command.
                     (activate-modprobe #$modprobe)
 
-                    ;; Tell the kernel where firmware is.
-                    (activate-firmware
-                     (string-append #$firmware "/lib/firmware"))
-
-                    ;; Let users debug their own processes!
-                    (activate-ptrace-attach)
+                    ;; Tell the kernel where firmware is, unless we are
+                    ;; activating a container.
+                    #$@(if container?
+                           #~()
+                           ;; Tell the kernel where firmware is.
+                           #~((activate-firmware
+                               (string-append #$firmware "/lib/firmware"))
+                              ;; Let users debug their own processes!
+                              (activate-ptrace-attach)))
 
                     ;; Run the services' activation snippets.
                     ;; TODO: Use 'load-compiled'.
@@ -766,11 +774,12 @@ etc."
                     ;; Set up /run/current-system.
                     (activate-current-system)))))
 
-(define (operating-system-boot-script os)
+(define* (operating-system-boot-script os #:key container?)
   "Return the boot script for OS---i.e., the code started by the initrd once
 we're running in the final root."
   (mlet* %store-monad ((services (operating-system-services os))
-                       (activate (operating-system-activation-script os))
+                       (activate (operating-system-activation-script
+                                  os #:container? container?))
                        (dmd-conf (dmd-configuration-file services)))
     (gexp->file "boot"
                 #~(begin
diff --git a/gnu/system/linux-container.scm b/gnu/system/linux-container.scm
new file mode 100644
index 0000000..5368dec
--- /dev/null
+++ b/gnu/system/linux-container.scm
@@ -0,0 +1,90 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2015 David Thompson <davet@gnu.org>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu system linux-container)
+  #:use-module (ice-9 match)
+  #:use-module (guix config)
+  #:use-module (guix store)
+  #:use-module (guix gexp)
+  #:use-module (guix derivations)
+  #:use-module (guix monads)
+  #:use-module (gnu build linux-container)
+  #:use-module (gnu system)
+  #:use-module (gnu system file-systems)
+  #:export (mapping->file-system
+            system-container
+            container-script))
+
+(define (mapping->file-system mapping)
+  "Return a file system that realizes MAPPING."
+  (match mapping
+    (($ <file-system-mapping> source target writable?)
+     (file-system
+       (mount-point target)
+       (device source)
+       (type "none")
+       (flags (if writable?
+                  '(bind-mount)
+                  '(bind-mount read-only)))
+       (check? #f)
+       (create-mount-point? #t)))))
+
+(define (system-container os)
+  (mlet* %store-monad
+      ((profile (operating-system-profile os))
+       (etc     (operating-system-etc-directory os))
+       (boot    (operating-system-boot-script os #:container? #t))
+       (locale  (operating-system-locale-directory os)))
+    (file-union "system-container"
+                `(("boot" ,#~#$boot)
+                  ("profile" ,#~#$profile)
+                  ("locale" ,#~#$locale)
+                  ("etc" ,#~#$etc)))))
+
+(define* (container-script os #:key (mappings '()))
+  (let* ((mappings     (map mapping->file-system
+                            ;; Bind-mount the store in addition to
+                            ;; user-specified mappings.
+                            (cons %store-mapping mappings)))
+         (file-systems (filter file-system-needed-for-boot?
+                               (operating-system-file-systems os)))
+         (specs        (map file-system->spec
+                            (append file-systems mappings))))
+
+    (mlet* %store-monad ((os-drv (system-container os)))
+
+      (define script
+        #~(begin
+            (use-modules (gnu build linux-container))
+
+            (call-with-container '#$specs
+              (lambda ()
+                (setenv "HOME" "/root")
+                (setenv "TMPDIR" "/tmp")
+                (setenv "GUIX_NEW_SYSTEM" #$os-drv)
+                (for-each mkdir '("/run" "/bin" "/etc" "/home" "/var"))
+                (primitive-load (string-append #$os-drv "/boot"))))))
+
+      (gexp->script "run-container" script
+                    #:modules '((ice-9 match)
+                                (srfi srfi-98)
+                                (guix config)
+                                (guix utils)
+                                (guix build utils)
+                                (guix build syscalls)
+                                (gnu build linux-container))))))
-- 
2.4.3

^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [PATCH 12/15] gnu: system: Add Linux container file systems.
  2015-07-06 13:16 [PATCH 01/15] build: syscalls: Add additional mount flags David Thompson
                   ` (9 preceding siblings ...)
  2015-07-06 13:16 ` [PATCH 11/15] gnu: system: Add Linux container module David Thompson
@ 2015-07-06 13:16 ` David Thompson
  2015-07-07 13:56   ` Ludovic Courtès
  2015-07-06 13:16 ` [PATCH 13/15] scripts: system: Add 'container' action David Thompson
                   ` (3 subsequent siblings)
  14 siblings, 1 reply; 65+ messages in thread
From: David Thompson @ 2015-07-06 13:16 UTC (permalink / raw)
  To: guix-devel; +Cc: David Thompson

From: David Thompson <davet@gnu.org>

* gnu/system/file-systems.scm (%container-file-systems): New variable.
---
 gnu/system/file-systems.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/system/file-systems.scm b/gnu/system/file-systems.scm
index b33f826..23998dd 100644
--- a/gnu/system/file-systems.scm
+++ b/gnu/system/file-systems.scm
@@ -45,6 +45,7 @@
             %control-groups
 
             %base-file-systems
+            %container-file-systems
 
             mapped-device
             mapped-device?
@@ -198,6 +199,35 @@ initrd code."
                 %immutable-store)
           %control-groups))
 
+(define %container-file-systems
+  (list
+   ;; Psuedo-terminal file system.
+   (file-system
+     (device "none")
+     (mount-point "/dev/pts")
+     (type "devpts")
+     (flags '(no-exec no-suid))
+     (needed-for-boot? #t)
+     (create-mount-point? #t)
+     (options "newinstance,ptmxmode=0666,mode=620"))
+   ;; Shared memory file system.
+   (file-system
+     (device "tmpfs")
+     (mount-point "/dev/shm")
+     (type "tmpfs")
+     (flags '(no-exec no-suid no-dev))
+     (options "mode=1777,size=65536k")
+     (needed-for-boot? #t)
+     (create-mount-point? #t))
+   ;; Message queue file system.
+   (file-system
+     (device "mqueue")
+     (mount-point "/dev/mqueue")
+     (type "mqueue")
+     (flags '(no-exec no-suid no-dev))
+     (needed-for-boot? #t)
+     (create-mount-point? #t))))
+
 
 \f
 ;;;
-- 
2.4.3

^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [PATCH 13/15] scripts: system: Add 'container' action.
  2015-07-06 13:16 [PATCH 01/15] build: syscalls: Add additional mount flags David Thompson
                   ` (10 preceding siblings ...)
  2015-07-06 13:16 ` [PATCH 12/15] gnu: system: Add Linux container file systems David Thompson
@ 2015-07-06 13:16 ` David Thompson
  2015-07-07 14:05   ` Ludovic Courtès
  2015-07-06 13:16 ` [PATCH 14/15] scripts: environment: Add --container option David Thompson
                   ` (2 subsequent siblings)
  14 siblings, 1 reply; 65+ messages in thread
From: David Thompson @ 2015-07-06 13:16 UTC (permalink / raw)
  To: guix-devel; +Cc: David Thompson

From: David Thompson <davet@gnu.org>

* guix/scripts/system.scm (show-help): Display 'container' action.
  (system-derivation-for-action, guix-system): Add 'container' case.
  (perform-action): Skip GRUB config generation when building a container.
* doc/guix.texi (Invoking guix system): Document it.
---
 doc/guix.texi           | 21 +++++++++++++++++++++
 guix/scripts/system.scm | 19 +++++++++++++------
 2 files changed, 34 insertions(+), 6 deletions(-)

diff --git a/doc/guix.texi b/doc/guix.texi
index 284d667..d24f97e 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -6298,6 +6298,27 @@ using the following command:
 # dd if=$(guix system disk-image my-os.scm) of=/dev/sdc
 @end example
 
+@item container
+Return a script to run the operating system declared in @var{file}
+within a container.  Currently, the script must be run as root in order
+to support more than a single user and group.
+
+The container shares its store with the host system.
+
+Additional file systems can be shared between the host and the container
+using the @code{--share} and @code{--expose} command-line options: the
+former specifies a directory to be shared with write access, while the
+latter provides read-only access to the shared directory.
+
+The example below creates a container in which the user's home directory
+is accessible read-only, and where the @file{/exchange} directory is a
+read-write mapping of the host's @file{$HOME/tmp}:
+
+@example
+guix system container my-config.scm \
+   --expose=$HOME --share=$HOME/tmp=/exchange
+@end example
+
 @end table
 
 @var{options} can contain any of the common build options provided by
diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm
index 6084ab8..ab8ffd7 100644
--- a/guix/scripts/system.scm
+++ b/guix/scripts/system.scm
@@ -31,6 +31,7 @@
   #:use-module (gnu build install)
   #:use-module (gnu system)
   #:use-module (gnu system file-systems)
+  #:use-module (gnu system linux-container)
   #:use-module (gnu system vm)
   #:use-module (gnu system grub)
   #:use-module (gnu packages grub)
@@ -285,6 +286,8 @@ it atomically, and then run OS's activation script."
   (case action
     ((build init reconfigure)
      (operating-system-derivation os))
+    ((container)
+     (container-script os #:mappings mappings))
     ((vm-image)
      (system-qemu-image os #:disk-image-size image-size))
     ((vm)
@@ -324,10 +327,12 @@ boot directly to the kernel or to the bootloader."
                                                 #:full-boot? full-boot?
                                                 #:mappings mappings))
        (grub      (package->derivation grub))
-       (grub.cfg  (operating-system-grub.cfg os
-                                             (if (eq? 'init action)
-                                                 '()
-                                                 (previous-grub-entries))))
+       (grub.cfg  (if (eq? 'container action)
+                      (return #f)
+                      (operating-system-grub.cfg os
+                                                 (if (eq? 'init action)
+                                                     '()
+                                                     (previous-grub-entries)))))
        (drvs   -> (if (and grub? (memq action '(init reconfigure)))
                       (list sys grub grub.cfg)
                       (list sys)))
@@ -382,6 +387,8 @@ Build the operating system declared in FILE according to ACTION.\n"))
   (display (_ "\
    build            build the operating system without installing anything\n"))
   (display (_ "\
+  container         build a Linux container that shares the host's store\n"))
+  (display (_ "\
    vm               build a virtual machine image that shares the host's store\n"))
   (display (_ "\
    vm-image         build a freestanding virtual machine image\n"))
@@ -491,7 +498,7 @@ Build the operating system declared in FILE according to ACTION.\n"))
         (alist-cons 'argument arg result)
         (let ((action (string->symbol arg)))
           (case action
-            ((build vm vm-image disk-image reconfigure init)
+            ((build container vm vm-image disk-image reconfigure init)
              (alist-cons 'action action result))
             (else (leave (_ "~a: unknown action~%") action))))))
 
@@ -512,7 +519,7 @@ Build the operating system declared in FILE according to ACTION.\n"))
                action))
 
       (case action
-        ((build vm vm-image disk-image reconfigure)
+        ((build container vm vm-image disk-image reconfigure)
          (unless (= count 1)
            (fail)))
         ((init)
-- 
2.4.3

^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [PATCH 14/15] scripts: environment: Add --container option.
  2015-07-06 13:16 [PATCH 01/15] build: syscalls: Add additional mount flags David Thompson
                   ` (11 preceding siblings ...)
  2015-07-06 13:16 ` [PATCH 13/15] scripts: system: Add 'container' action David Thompson
@ 2015-07-06 13:16 ` David Thompson
  2015-07-07 14:35   ` Ludovic Courtès
  2015-07-06 13:16 ` [PATCH 15/15] scripts: Add 'container' subcommand David Thompson
  2015-07-07 13:14 ` [PATCH 01/15] build: syscalls: Add additional mount flags Ludovic Courtès
  14 siblings, 1 reply; 65+ messages in thread
From: David Thompson @ 2015-07-06 13:16 UTC (permalink / raw)
  To: guix-devel; +Cc: David Thompson

From: David Thompson <davet@gnu.org>

* guix/scripts/enviroment.scm (show-help): Show help for new option.
  (%options): Add --container option.
  (launch-environment, launch-environment/container): New procedures.
  (guix-environment): Spawn new process in a container when requested.
* doc/guix.texi (Invoking guix environment): Document it.
---
 doc/guix.texi                | 16 +++++++++++++++
 guix/scripts/environment.scm | 48 ++++++++++++++++++++++++++++++++++++++++++--
 2 files changed, 62 insertions(+), 2 deletions(-)

diff --git a/doc/guix.texi b/doc/guix.texi
index d24f97e..57fc446 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -4191,6 +4191,15 @@ NumPy:
 guix environment --ad-hoc python2-numpy python-2.7 -E python
 @end example
 
+Sometimes it is desirable to isolate the environment as much as
+possible, for maximal purity and reproducibility.  For example, the
+following command spawns a Guile REPL in a ``container'' where only the
+store and the current working directory are mounted:
+
+@example
+guix environment --ad-hoc --container guile --exec=guile
+@end example
+
 The available options are summarized below.
 
 @table @code
@@ -4256,6 +4265,13 @@ environment.
 @item --system=@var{system}
 @itemx -s @var{system}
 Attempt to build for @var{system}---e.g., @code{i686-linux}.
+
+@item --container
+@itemx -C
+Run command within an isolated container.  The current working directory
+outside the container is mapped to @file{/env} inside the container.
+Additionally, the spawned process runs as the current user outside the
+container, but has root privileges in the context of the container.
 @end table
 
 It also supports all of the common build options that @command{guix
diff --git a/guix/scripts/environment.scm b/guix/scripts/environment.scm
index ecdbc7a..41d1554 100644
--- a/guix/scripts/environment.scm
+++ b/guix/scripts/environment.scm
@@ -28,6 +28,9 @@
   #:use-module (guix monads)
   #:use-module ((guix gexp) #:select (lower-inputs))
   #:use-module (guix scripts build)
+  #:use-module (gnu build linux-container)
+  #:use-module (gnu system linux-container)
+  #:use-module (gnu system file-systems)
   #:use-module (gnu packages)
   #:use-module (ice-9 format)
   #:use-module (ice-9 match)
@@ -122,6 +125,8 @@ shell command in that environment.\n"))
       --search-paths     display needed environment variable definitions"))
   (display (_ "
   -s, --system=SYSTEM    attempt to build for SYSTEM--e.g., \"i686-linux\""))
+  (display (_ "
+  -C, --container        run command within an isolated container"))
   (newline)
   (show-build-options-help)
   (newline)
@@ -174,6 +179,9 @@ shell command in that environment.\n"))
                  (lambda (opt name arg result)
                    (alist-cons 'system arg
                                (alist-delete 'system result eq?))))
+         (option '(#\C "container") #f #f
+                 (lambda (opt name arg result)
+                   (alist-cons 'container? #t result)))
          %standard-build-options))
 
 (define (pick-all alist key)
@@ -229,6 +237,38 @@ OUTPUT) tuples, using the build options in OPTS."
                (built-derivations derivations)
                (return derivations))))))))
 
+(define (launch-environment command inputs paths pure?)
+  "Run COMMAND in a new environment containing INPUTS, using the native search
+paths defined by the list PATHS.  When PURE?, pre-existing environment
+variables are cleared before setting the new ones."
+  (create-environment inputs paths pure?)
+  (system command))
+
+(define (launch-environment/container command inputs paths)
+  "Run COMMAND within a Linux container that includes INPUTS and the
+environment variables defined by PATHS, a list of native search paths."
+  ;; Bind-mount the store and the current working directory within the
+  ;; container.
+  (let* ((mappings
+          (list (file-system-mapping
+                 (source (%store-prefix))
+                 (target (%store-prefix))
+                 (writable? #f))
+                (file-system-mapping
+                 (source (getcwd))
+                 (target "/env")
+                 (writable? #t))))
+         (file-systems
+          (append %container-file-systems
+                  (map mapping->file-system mappings)))
+         (status
+          (call-with-container (map file-system->spec file-systems)
+            (lambda ()
+              (chdir "/env")
+              ;; A container's environment is already purified.
+              (launch-environment command inputs paths #f)))))
+    (status:exit-val status)))
+
 ;; Entry point.
 (define (guix-environment . args)
   (define (handle-argument arg result)
@@ -238,6 +278,7 @@ OUTPUT) tuples, using the build options in OPTS."
     (let* ((opts     (parse-command-line args %options (list %default-options)
                                          #:argument-handler handle-argument))
            (pure?    (assoc-ref opts 'pure))
+           (container? (assoc-ref opts 'container?))
            (ad-hoc?  (assoc-ref opts 'ad-hoc?))
            (command  (assoc-ref opts 'exec))
            (packages (pick-all (options/resolve-packages opts) 'package))
@@ -279,6 +320,9 @@ OUTPUT) tuples, using the build options in OPTS."
                     ((assoc-ref opts 'search-paths)
                      (show-search-paths inputs paths pure?)
                      (return #t))
+                    (container?
+                     (return
+                      (launch-environment/container command inputs paths)))
                     (else
-                     (create-environment inputs paths pure?)
-                     (return (exit (status:exit-val (system command)))))))))))))
+                     (return
+                      (launch-environment command inputs paths pure?)))))))))))
-- 
2.4.3

^ permalink raw reply related	[flat|nested] 65+ messages in thread

* [PATCH 15/15] scripts: Add 'container' subcommand.
  2015-07-06 13:16 [PATCH 01/15] build: syscalls: Add additional mount flags David Thompson
                   ` (12 preceding siblings ...)
  2015-07-06 13:16 ` [PATCH 14/15] scripts: environment: Add --container option David Thompson
@ 2015-07-06 13:16 ` David Thompson
  2015-07-07 14:50   ` Ludovic Courtès
  2015-07-07 13:14 ` [PATCH 01/15] build: syscalls: Add additional mount flags Ludovic Courtès
  14 siblings, 1 reply; 65+ messages in thread
From: David Thompson @ 2015-07-06 13:16 UTC (permalink / raw)
  To: guix-devel; +Cc: David Thompson

From: David Thompson <davet@gnu.org>

* guix/scripts/container.scm: New file.
* guix/scripts/container/exec.scm: New file.
* doc/guix.texi (Invoking guix container): New section.
* Makefile.am (MODULES): Add them.
---
 Makefile.am                     |  2 ++
 doc/guix.texi                   | 46 +++++++++++++++++++++++-
 guix/scripts/container.scm      | 62 ++++++++++++++++++++++++++++++++
 guix/scripts/container/exec.scm | 79 +++++++++++++++++++++++++++++++++++++++++
 4 files changed, 188 insertions(+), 1 deletion(-)
 create mode 100644 guix/scripts/container.scm
 create mode 100644 guix/scripts/container/exec.scm

diff --git a/Makefile.am b/Makefile.am
index 569ea6f..b2adeed 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -116,6 +116,8 @@ MODULES =					\
   guix/scripts/publish.scm			\
   guix/scripts/edit.scm				\
   guix/scripts/size.scm				\
+  guix/scripts/container.scm			\
+  guix/scripts/container/exec.scm		\
   guix.scm					\
   $(GNU_SYSTEM_MODULES)
 
diff --git a/doc/guix.texi b/doc/guix.texi
index 57fc446..a207a39 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -134,6 +134,7 @@ Utilities
 * Invoking guix size::          Profiling disk usage.
 * Invoking guix environment::   Setting up development environments.
 * Invoking guix publish::       Sharing substitutes.
+* Invoking guix container::     Process isolation.
 
 GNU Distribution
 
@@ -2770,7 +2771,7 @@ omitted since it will take place implicitly, as we will see later
 @end example
 
 @c See
-@c <https://syntaxexclamation.wordpress.com/2014/06/26/escaping-continuations/> 
+@c <https://syntaxexclamation.wordpress.com/2014/06/26/escaping-continuations/>
 @c for the funny quote.
 Calling the monadic @code{sh-symlink} has no effect.  As someone once
 said, ``you exit a monad like you exit a building on fire: by running''.
@@ -3332,6 +3333,7 @@ programming interface of Guix in a convenient way.
 * Invoking guix size::          Profiling disk usage.
 * Invoking guix environment::   Setting up development environments.
 * Invoking guix publish::       Sharing substitutes.
+* Invoking guix container::     Process isolation.
 @end menu
 
 @node Invoking guix build
@@ -4339,6 +4341,48 @@ Reference Manual}) on @var{port} (37146 by default).  This is used
 primarily for debugging a running @command{guix publish} server.
 @end table
 
+@node Invoking guix container
+@section Invoking @command{guix container}
+
+The purpose of @command{guix container} is to manipulate processes
+running within an isolated environment, commonly known as a
+``container.''
+
+The general syntax is:
+
+@example
+guix container @var{action} @var{options}@dots{}
+@end example
+
+@var{action} specifies the operation to perform with a container, and
+@var{options} specifies the context-specific arguments for the action.
+
+The following actions are available:
+
+@table @code
+@item exec
+Execute a command within the context of a running container.
+
+The syntax is:
+
+@example
+guix container exec @var{pid} @var{program} @var{arguments}@dots{}
+@end example
+
+@var{pid} specifies the process ID of the running container.
+@var{program} specifies an executable file name within the container's
+root file system.  @var{arguments} are the additional options that will
+be passed to @var{program}.
+
+The following command launches an interactive login shell inside a
+GuixSD container whose process ID is 9001:
+
+@example
+guix container exec 9001 /run/current-system/profile/bin/bash --login
+@end example
+
+@end table
+
 @c *********************************************************************
 @node GNU Distribution
 @chapter GNU Distribution
diff --git a/guix/scripts/container.scm b/guix/scripts/container.scm
new file mode 100644
index 0000000..059451c
--- /dev/null
+++ b/guix/scripts/container.scm
@@ -0,0 +1,62 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2015 David Thompson <davet@gnu.org>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (guix scripts container)
+  #:use-module (ice-9 match)
+  #:use-module (guix ui)
+  #:export (guix-container))
+
+(define (show-help)
+  (display (_ "Usage: guix container ACTION ARGS...
+Build and manipulate Linux containers.\n"))
+  (newline)
+  (display (_ "The valid values for ACTION are:\n"))
+  (newline)
+  (display (_ "\
+   exec            Execute a command inside of an existing container\n"))
+  (newline)
+  (display (_ "
+  -h, --help             display this help and exit"))
+  (display (_ "
+  -V, --version          display version information and exit"))
+  (newline)
+  (show-bug-report-information))
+
+(define %actions '("exec"))
+
+(define (resolve-action name)
+  (let ((module (resolve-interface
+                 `(guix scripts container ,(string->symbol name))))
+        (proc (string->symbol (string-append "guix-container-" name))))
+    (module-ref module proc)))
+
+(define (guix-container . args)
+  (match args
+    (()
+     (format (current-error-port)
+             (_ "guix container: missing action~%")))
+    ((or ("-h") ("--help"))
+     (show-help)
+     (exit 0))
+    (("--version")
+     (show-version-and-exit "guix container"))
+    ((action args ...)
+     (if (member action %actions)
+         (apply (resolve-action action) args)
+         (format (current-error-port)
+                 (_ "guix container: invalid action~%"))))))
diff --git a/guix/scripts/container/exec.scm b/guix/scripts/container/exec.scm
new file mode 100644
index 0000000..13ba666
--- /dev/null
+++ b/guix/scripts/container/exec.scm
@@ -0,0 +1,79 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2015 David Thompson <davet@gnu.org>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (guix scripts container exec)
+  #:use-module (ice-9 match)
+  #:use-module (srfi srfi-1)
+  #:use-module (srfi srfi-11)
+  #:use-module (srfi srfi-37)
+  #:use-module (guix ui)
+  #:use-module (guix utils)
+  #:use-module (gnu build linux-container)
+  #:export (guix-container-exec))
+
+(define %options
+  (list (option '(#\h "help") #f #f
+                (lambda args
+                  (show-help)
+                  (exit 0)))
+        (option '(#\V "version") #f #f
+                (lambda args
+                  (show-version-and-exit "guix container exec")))))
+
+(define (show-help)
+  (display (_ "Usage: guix container exec PID COMMAND [ARGS...]
+Execute COMMMAND within the container process PID.\n"))
+  (newline)
+  (display (_ "
+  -h, --help             display this help and exit"))
+  (display (_ "
+  -V, --version          display version information and exit"))
+  (newline)
+  (show-bug-report-information))
+
+(define (partition-args args)
+  "Split ARGS into two lists; one containing the arguments for this program,
+and the other containing arguments for the command to be executed."
+  (break (lambda (arg)
+           ;; Split after the pid argument.
+           (not (false-if-exception (string->number arg))))
+         args))
+
+(define (guix-container-exec . args)
+  (define (handle-argument arg result)
+    (if (assoc-ref result 'pid)
+        (leave (_ "~a: extraneous argument~%") arg)
+        (alist-cons 'pid (string->number* arg) result)))
+
+  (let-values (((args command) (partition-args args)))
+    (let* ((opts (parse-command-line args %options '(())
+                                     #:argument-handler
+                                     handle-argument))
+           (pid  (assoc-ref opts 'pid)))
+
+      (unless pid
+        (leave (_ "no pid specified~%")))
+
+      (when (null? command)
+        (leave (_ "no command specified~%")))
+
+      (container-excursion pid
+        (lambda ()
+          (match command
+            ((program . program-args)
+             (apply execlp program program program-args))))))))
-- 
2.4.3

^ permalink raw reply related	[flat|nested] 65+ messages in thread

* Re: [PATCH 01/15] build: syscalls: Add additional mount flags.
  2015-07-06 13:16 [PATCH 01/15] build: syscalls: Add additional mount flags David Thompson
                   ` (13 preceding siblings ...)
  2015-07-06 13:16 ` [PATCH 15/15] scripts: Add 'container' subcommand David Thompson
@ 2015-07-07 13:14 ` Ludovic Courtès
  2015-07-07 22:42   ` Thompson, David
  14 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-07-07 13:14 UTC (permalink / raw)
  To: David Thompson; +Cc: guix-devel, David Thompson

David Thompson <dthompson2@worcester.edu> skribis:

> From: David Thompson <davet@gnu.org>
>
> * guix/build/syscalls.scm (MS_NOSUID, MS_NODEV, MS_NOEXEC, MS_STRICTATIME):
>   New variables.

OK.

Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 03/15] build: syscalls: Add mkdtemp!
  2015-07-06 13:16 ` [PATCH 03/15] build: syscalls: Add mkdtemp! David Thompson
@ 2015-07-07 13:15   ` Ludovic Courtès
  2015-07-07 22:52     ` Thompson, David
  0 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-07-07 13:15 UTC (permalink / raw)
  To: David Thompson; +Cc: guix-devel, David Thompson

David Thompson <dthompson2@worcester.edu> skribis:

> * guix/build/syscalls.scm (mkdtemp!): New procedure.
> * tests/syscalls.scm: Test it.

Rather:

* tests/syscalls.scm ("mkdtemp!"): New test.

Otherwise OK.

Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 04/15] utils: Add call-with-temporary-directory.
  2015-07-06 13:16 ` [PATCH 04/15] utils: Add call-with-temporary-directory David Thompson
@ 2015-07-07 13:15   ` Ludovic Courtès
  2015-07-07 22:54     ` Thompson, David
  0 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-07-07 13:15 UTC (permalink / raw)
  To: David Thompson; +Cc: guix-devel, David Thompson

David Thompson <dthompson2@worcester.edu> skribis:

> * guix/utils.scm (call-with-temporary-directory): New procedure.

OK.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 05/15] build: syscalls: Add clone syscall wrapper.
  2015-07-06 13:16 ` [PATCH 05/15] build: syscalls: Add clone syscall wrapper David Thompson
@ 2015-07-07 13:23   ` Ludovic Courtès
  2015-07-08  0:28     ` Thompson, David
  0 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-07-07 13:23 UTC (permalink / raw)
  To: David Thompson; +Cc: guix-devel, David Thompson

David Thompson <dthompson2@worcester.edu> skribis:

> From: David Thompson <davet@gnu.org>
>
> * guix/build/syscalls.scm (clone): New procedure.
>   (CLONE_NEWNS, CLONE_NEWUTS, CLONE_NEWIPC, CLONE_NEWUSER, CLONE_NEWPID,
>   CLONE_NEWNET): New variables.
> * tests/syscalls.scm: Test it.

[...]

> +;; The libc interface to sys_clone is not useful for Scheme programs, so the
> +;; low-level system call is wrapped instead.
> +(define clone
> +  (let* ((ptr        (dynamic-func "syscall" (dynamic-link)))
> +         (proc       (pointer->procedure int ptr (list int int '*)))
> +         ;; TODO: Handle all supported architectures
> +         (syscall-id (match (utsname:machine (uname))
> +                       ("x86_64" 56)
> +                       (_        120))))

Please add the value for at least i386, mips64el, and armv7 (grep -r
NR_clone arch/ in the kernel tree.)

> +  (match (clone (logior CLONE_NEWUSER))

No need for logior.

> +    (0 (primitive-exit 0))

Maybe exit with code 42 here...

> +    (pid
> +     ;; Check if user namespaces are different.
> +     (not (equal? (readlink (user-namespace pid))
> +                  (readlink (user-namespace "self")))))))

... and here to a waitpid and check the status:exit-val.

OK with these changes.

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 06/15] build: syscalls: Add setns syscall wrapper.
  2015-07-06 13:16 ` [PATCH 06/15] build: syscalls: Add setns " David Thompson
@ 2015-07-07 13:28   ` Ludovic Courtès
  2015-07-08  0:57     ` Thompson, David
  0 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-07-07 13:28 UTC (permalink / raw)
  To: David Thompson; +Cc: guix-devel, David Thompson

David Thompson <dthompson2@worcester.edu> skribis:

> From: David Thompson <davet@gnu.org>
>
> * guix/build/syscalls.scm (setns): New procedure.
> * tests/syscalls.scm: Test it.

[...]

> +    (lambda (fdes nstype)
> +      "Reassociate the current process with the namespace specified by FDES.

“... by FDES, a file descriptor obtained by opening a /proc/PID/ns/*
files.”

> +(test-assert "setns"
> +  (match (clone (logior CLONE_NEWUSER))
> +    (0 (primitive-exit 0))
> +    (clone-pid
> +     (match (pipe)
> +       ((in . out)
> +        (match (primitive-fork)
> +          (0
> +           (close in)
> +           (call-with-input-file (user-namespace clone-pid)
> +             (lambda (port)
> +               (setns (port->fdes port) 0)))
> +           (write 'done out)
> +           (close out)
> +           (primitive-exit 0))
> +          (fork-pid
> +           (close out)
> +           ;; Wait for the child process to join the namespace.
> +           (read in)
> +           (equal? (readlink (user-namespace clone-pid))
> +                   (readlink (user-namespace fork-pid))))))))))

Add a waipid call for both CLONE-PID and FORK-PID to make sure nothing’s
left behind.

OK with these changes!

Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 07/15] build: syscalls: Add pivot-root.
  2015-07-06 13:16 ` [PATCH 07/15] build: syscalls: Add pivot-root David Thompson
@ 2015-07-07 13:35   ` Ludovic Courtès
  2015-07-08  1:18     ` Thompson, David
  0 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-07-07 13:35 UTC (permalink / raw)
  To: David Thompson; +Cc: guix-devel, David Thompson

David Thompson <dthompson2@worcester.edu> skribis:

> From: David Thompson <davet@gnu.org>
>
> * guix/build/syscalls.scm (pivot-root): New procedure.
> * tests/syscalls.scm: Test it.

[...]

> +(test-assert "pivot-root"
> +  (match (pipe)
> +    ((in . out)
> +     (match (clone (logior CLONE_NEWUSER CLONE_NEWNS))
> +       (0
> +        (close in)
> +        (call-with-temporary-directory
> +         (lambda (root)
> +           (let ((put-old (string-append root "/real-root")))
> +             (mount "none" root "tmpfs")
> +             (mkdir put-old)
> +             (call-with-output-file (string-append root "/test")
> +               (lambda (port)
> +                 (display "testing\n" port)))
> +             (pivot-root root put-old)
> +             ;; The test file should now be located inside the root directory.
> +             (write (file-exists "/test") out)
> +             (close out))))
> +        (primitive-exit 0))
> +       (pid
> +        (close out)
> +        (read in))))))

Shouldn’t it be:

  (file-exists? (string-append put-old "/test"))

To be on the safe side, the last line should probably be:

  (eq? #t (read in))

Otherwise a return value of *unspecified* works as well.

Also, ‘waidpid’:

  (pid
    (close out)
    (let ((result (read in)))
      (close in)
      (and (zero? (status:exit-val (waitpid pid)))
           (eq? #t result))))

OK with these changes.

Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 08/15] gnu: build: Add Linux container module.
  2015-07-06 13:16 ` [PATCH 08/15] gnu: build: Add Linux container module David Thompson
@ 2015-07-07 13:51   ` Ludovic Courtès
  2015-07-08 12:38     ` Thompson, David
  0 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-07-07 13:51 UTC (permalink / raw)
  To: David Thompson; +Cc: guix-devel, David Thompson

David Thompson <dthompson2@worcester.edu> skribis:

> * gnu/build/linux-container.scm: New file.
> * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
> * .dir-locals.el: Add Scheme indent rules for 'call-with-clone', 'with-clone',
>   'call-with-container', and 'container-excursion'.
> * tests/containers.scm: New file.
> * Makefile.am (SCM_TESTS): Add it.

[...]

> +(define (mount-flags->bit-mask flags)
> +  "Return the number suitable for the 'flags' argument of 'mount' that
> +corresponds to the symbols listed in FLAGS."
> +  (let loop ((flags flags))
> +    (match flags
> +      (('read-only rest ...)
> +       (logior MS_RDONLY (loop rest)))
> +      (('bind-mount rest ...)
> +       (logior MS_BIND (loop rest)))
> +      (('no-suid rest ...)
> +       (logior MS_NOSUID (loop rest)))
> +      (('no-dev rest ...)
> +       (logior MS_NODEV (loop rest)))
> +      (('no-exec rest ...)
> +       (logior MS_NOEXEC (loop rest)))
> +      (()
> +       0))))
> +
> +(define* (mount-file-system spec root)
> +  "Mount the file system described by SPEC under ROOT.  SPEC must have the
> +form:
> +
> +  (DEVICE TITLE MOUNT-POINT TYPE (FLAGS ...) OPTIONS CHECK?)

Could we share these two procedures with (gnu build file-systems)?

I suspect the problem you encountered is that (gnu build file-systems)
doesn’t use (guix build syscalls), and instead expects the
statically-linked Guile with the guile-syscalls.patch.

To work around that, I think we should shamelessly add something like
this in (gnu build file-system):

  (unless (defined? 'mount)
    (module-use! (current-module)
                 (resolve-interface '(guix build syscalls))))

WDYT?

> +(define (namespaces->bit-mask namespaces)
> +  "Return the number suitable for the 'flags' argument of 'clone' that
> +corresponds to the symbols in NAMESPACES."

I would be in favor of “name spaces” (two words), but maybe that’s
because I’m an old fart, so I won’t insist.

> +(test-assert "call-with-container, pid namespace"
> +  (zero?
> +   (call-with-container '()
> +     (lambda ()
> +       (match (primitive-fork)
> +         (0
> +          ;; The first forked process in the new pid namespace is pid 2.
> +          (assert-exit (= 2 (getpid))))

But its parent doesn’t sees itself as PID 1?

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 09/15] gnu: system: Move <file-system-mapping> into (gnu system file-systems).
  2015-07-06 13:16 ` [PATCH 09/15] gnu: system: Move <file-system-mapping> into (gnu system file-systems) David Thompson
@ 2015-07-07 13:51   ` Ludovic Courtès
  2015-07-08  1:21     ` Thompson, David
  0 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-07-07 13:51 UTC (permalink / raw)
  To: David Thompson; +Cc: guix-devel, David Thompson

David Thompson <dthompson2@worcester.edu> skribis:

> * gnu/system/vm.scm (<file-system-mapping>, %store-mapping): Move from here...
> * gnu/system/file-systems.scm: ...to here.
> * guix/scripts/system.scm: Import (gnu system file-systems).

OK

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 10/15] gnu: system: Move file-system->spec to (gnu system file-systems).
  2015-07-06 13:16 ` [PATCH 10/15] gnu: system: Move file-system->spec to " David Thompson
@ 2015-07-07 13:51   ` Ludovic Courtès
  2015-07-08  1:22     ` Thompson, David
  0 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-07-07 13:51 UTC (permalink / raw)
  To: David Thompson; +Cc: guix-devel, David Thompson

David Thompson <dthompson2@worcester.edu> skribis:

> * gnu/system/linux-initrd.scm (file-system->spec): Move this...
> * gnu/system/file-systems.scm: ... to here.

OK

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 11/15] gnu: system: Add Linux container module.
  2015-07-06 13:16 ` [PATCH 11/15] gnu: system: Add Linux container module David Thompson
@ 2015-07-07 13:55   ` Ludovic Courtès
  2015-07-09 13:00     ` Thompson, David
  0 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-07-07 13:55 UTC (permalink / raw)
  To: David Thompson; +Cc: guix-devel, David Thompson

David Thompson <dthompson2@worcester.edu> skribis:

> * gnu/system/linux-container.scm: New file.
> * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
> * gnu/system.scm: Export 'operating-system-etc-directory',
>   'operating-system-boot-script', 'operating-system-locale-directory', and
>   'file-union'.
>   (operating-system-boot-script): Add #:container? keyword argument.
>   (operating-system-activation-script): Add #:container?  keyword argument.
>   Don't call 'activate-firmware' or 'activate-ptrace-attach' when activating a
>   container.

[...]

> +(define* (operating-system-boot-script os #:key container?)
>    "Return the boot script for OS---i.e., the code started by the initrd once
>  we're running in the final root."

Augment the docstring with something like:

  When CONTAINER? is true, skip all hardware-related operations as
  necessary when booting a Linux container.

> +(define (system-container os)

docstring

> +(define* (container-script os #:key (mappings '()))

docstring

OK with these changes!

Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 12/15] gnu: system: Add Linux container file systems.
  2015-07-06 13:16 ` [PATCH 12/15] gnu: system: Add Linux container file systems David Thompson
@ 2015-07-07 13:56   ` Ludovic Courtès
  2015-07-09 12:56     ` Thompson, David
  0 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-07-07 13:56 UTC (permalink / raw)
  To: David Thompson; +Cc: guix-devel, David Thompson

David Thompson <dthompson2@worcester.edu> skribis:

> * gnu/system/file-systems.scm (%container-file-systems): New variable.

[...]

> +(define %container-file-systems

Could you add a comment explaining how they differ from
%base-file-systems and why it must be done this way?

Otherwise OK.

Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 13/15] scripts: system: Add 'container' action.
  2015-07-06 13:16 ` [PATCH 13/15] scripts: system: Add 'container' action David Thompson
@ 2015-07-07 14:05   ` Ludovic Courtès
  2015-10-27  0:24     ` Thompson, David
  0 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-07-07 14:05 UTC (permalink / raw)
  To: David Thompson; +Cc: guix-devel, David Thompson

David Thompson <dthompson2@worcester.edu> skribis:

> From: David Thompson <davet@gnu.org>
>
> * guix/scripts/system.scm (show-help): Display 'container' action.
>   (system-derivation-for-action, guix-system): Add 'container' case.
>   (perform-action): Skip GRUB config generation when building a container.
> * doc/guix.texi (Invoking guix system): Document it.

[...]

> +@item container
> +Return a script to run the operating system declared in @var{file}
> +within a container.  Currently, the script must be run as root in order

@dfn{container} + @cindex container

What about adding something like this after the first sentence:

  Containers are a set of lightweight isolation mechanisms provided by
  the kernel Linux-libre.  Containers are substantially less
  resource-demanding than full virtual machines since the kernel, shared
  objects, and other resources can be shared with the host system; this
  also means they provide thinner isolation.

> +to support more than a single user and group.
> +
> +The container shares its store with the host system.
> +
> +Additional file systems can be shared between the host and the container
> +using the @code{--share} and @code{--expose} command-line options: the
> +former specifies a directory to be shared with write access, while the
> +latter provides read-only access to the shared directory.
> +
> +The example below creates a container in which the user's home directory
> +is accessible read-only, and where the @file{/exchange} directory is a
> +read-write mapping of the host's @file{$HOME/tmp}:

Instead of these two paragraphs (which duplicate those above), what
about:

  As with the @code{vm} action (@pxref{the name of an anchor added above
  in the right place}), additional file systems to be shared between the
  host and container can be specified using the @option{--share} and
  @option{--expose} options:

OK with changes along these lines!

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 14/15] scripts: environment: Add --container option.
  2015-07-06 13:16 ` [PATCH 14/15] scripts: environment: Add --container option David Thompson
@ 2015-07-07 14:35   ` Ludovic Courtès
  2015-07-09 13:16     ` Thompson, David
  2015-09-05 23:45     ` Thompson, David
  0 siblings, 2 replies; 65+ messages in thread
From: Ludovic Courtès @ 2015-07-07 14:35 UTC (permalink / raw)
  To: David Thompson; +Cc: guix-devel, David Thompson

David Thompson <dthompson2@worcester.edu> skribis:

> * guix/scripts/enviroment.scm (show-help): Show help for new option.
>   (%options): Add --container option.
>   (launch-environment, launch-environment/container): New procedures.
>   (guix-environment): Spawn new process in a container when requested.
> * doc/guix.texi (Invoking guix environment): Document it.

[...]

> --- a/doc/guix.texi
> +++ b/doc/guix.texi
> @@ -4191,6 +4191,15 @@ NumPy:
>  guix environment --ad-hoc python2-numpy python-2.7 -E python
>  @end example
>  
> +Sometimes it is desirable to isolate the environment as much as
> +possible, for maximal purity and reproducibility.

+ “In particular, when using Guix on a host distro that is not GuixSD,
  it is desirable to prevent access to @file{/usr/bin} and other
  system-wide resources from the development environment.”

> +following command spawns a Guile REPL in a ``container'' where only the
> +store and the current working directory are mounted:

@cindex container

> +@item --container
> +@itemx -C
> +Run command within an isolated container.  The current working directory

@var{command}

Since this works without root privileges, what about adding a test in
tests/guix-environment.sh?

Basically something similar to one of the existing tests, but
additionally checking from within the container that ‘id -u’ returns 0,
that ‘$$’ is 2, and that files outside of $PWD are not in the container.

Which reminds me: In a separate commit, it Would Be Nice to document our
minimal kernel requirements for the container functionality.  Could you
look into that?

Thank you!

Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 15/15] scripts: Add 'container' subcommand.
  2015-07-06 13:16 ` [PATCH 15/15] scripts: Add 'container' subcommand David Thompson
@ 2015-07-07 14:50   ` Ludovic Courtès
  2015-10-27  0:31     ` Thompson, David
  0 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-07-07 14:50 UTC (permalink / raw)
  To: David Thompson; +Cc: guix-devel, David Thompson

David Thompson <dthompson2@worcester.edu> skribis:

> * guix/scripts/container.scm: New file.
> * guix/scripts/container/exec.scm: New file.
> * doc/guix.texi (Invoking guix container): New section.
> * Makefile.am (MODULES): Add them.

[...]

> +@node Invoking guix container
> +@section Invoking @command{guix container}
> +
> +The purpose of @command{guix container} is to manipulate processes
> +running within an isolated environment, commonly known as a
> +``container.''

s/\./, typically created by the @command{guix environment}
(@pxref{Invoking guix environment}) and @command{guix system container}
(@pxref{Invoking guix system}) command./

+ @cindex container

> +The following command launches an interactive login shell inside a
> +GuixSD container
                   ^
+ started by, @command{guix system container}, and

> +@example
> +guix container exec 9001 /run/current-system/profile/bin/bash --login
> +@end example

I managed to use it since my first message: basically I was passing the
PID of dmd’s parent process (which executes ‘run-container’) instead of
dmd’s PID.  Perhaps this should be (1) clarified, and (2) gracefully
handled?

> +  (display (_ "\
> +   exec            Execute a command inside of an existing container\n"))

lower-case

[...]

> +  (let-values (((args command) (partition-args args)))
> +    (let* ((opts (parse-command-line args %options '(())
> +                                     #:argument-handler
> +                                     handle-argument))
> +           (pid  (assoc-ref opts 'pid)))
> +
> +      (unless pid
> +        (leave (_ "no pid specified~%")))
> +
> +      (when (null? command)
> +        (leave (_ "no command specified~%")))
> +
> +      (container-excursion pid
> +        (lambda ()
> +          (match command
> +            ((program . program-args)
> +             (apply execlp program program program-args))))))))

This needs to be wrapped in ‘with-error-handling’.

Also please add the two files to po/guix/POTFILES.in.

Thank you!  That was a lot of reading, but pleasant reading.  :-)

Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 02/15] build: syscalls: Add unmount flags.
  2015-07-06 13:16 ` [PATCH 02/15] build: syscalls: Add unmount flags David Thompson
@ 2015-07-07 14:50   ` Ludovic Courtès
  2015-07-07 22:44     ` Thompson, David
  0 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-07-07 14:50 UTC (permalink / raw)
  To: David Thompson; +Cc: guix-devel, David Thompson

David Thompson <dthompson2@worcester.edu> skribis:

> * guix/build/syscalls.scm (MNT_FORCE, MNT_DETACH, MNT_EXPIRE)
>   (UMOUNT_NOFOLLOW): New variables.

OK

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 01/15] build: syscalls: Add additional mount flags.
  2015-07-07 13:14 ` [PATCH 01/15] build: syscalls: Add additional mount flags Ludovic Courtès
@ 2015-07-07 22:42   ` Thompson, David
  0 siblings, 0 replies; 65+ messages in thread
From: Thompson, David @ 2015-07-07 22:42 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

On Tue, Jul 7, 2015 at 9:14 AM, Ludovic Courtès <ludo@gnu.org> wrote:
> David Thompson <dthompson2@worcester.edu> skribis:
>
>> From: David Thompson <davet@gnu.org>
>>
>> * guix/build/syscalls.scm (MS_NOSUID, MS_NODEV, MS_NOEXEC, MS_STRICTATIME):
>>   New variables.
>
> OK.

Pushed, thanks!

- Dave

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 02/15] build: syscalls: Add unmount flags.
  2015-07-07 14:50   ` Ludovic Courtès
@ 2015-07-07 22:44     ` Thompson, David
  0 siblings, 0 replies; 65+ messages in thread
From: Thompson, David @ 2015-07-07 22:44 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

2015-07-07 10:50 GMT-04:00 Ludovic Courtès <ludo@gnu.org>:
> David Thompson <dthompson2@worcester.edu> skribis:
>
>> * guix/build/syscalls.scm (MNT_FORCE, MNT_DETACH, MNT_EXPIRE)
>>   (UMOUNT_NOFOLLOW): New variables.
>
> OK

Pushed, thanks!

- Dave

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 03/15] build: syscalls: Add mkdtemp!
  2015-07-07 13:15   ` Ludovic Courtès
@ 2015-07-07 22:52     ` Thompson, David
  0 siblings, 0 replies; 65+ messages in thread
From: Thompson, David @ 2015-07-07 22:52 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

On Tue, Jul 7, 2015 at 9:15 AM, Ludovic Courtès <ludo@gnu.org> wrote:
> David Thompson <dthompson2@worcester.edu> skribis:
>
>> * guix/build/syscalls.scm (mkdtemp!): New procedure.
>> * tests/syscalls.scm: Test it.
>
> Rather:
>
> * tests/syscalls.scm ("mkdtemp!"): New test.
>
> Otherwise OK.

Fixed and pushed, thanks!

- Dave

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 04/15] utils: Add call-with-temporary-directory.
  2015-07-07 13:15   ` Ludovic Courtès
@ 2015-07-07 22:54     ` Thompson, David
  0 siblings, 0 replies; 65+ messages in thread
From: Thompson, David @ 2015-07-07 22:54 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

On Tue, Jul 7, 2015 at 9:15 AM, Ludovic Courtès <ludo@gnu.org> wrote:
> David Thompson <dthompson2@worcester.edu> skribis:
>
>> * guix/utils.scm (call-with-temporary-directory): New procedure.
>
> OK.

Pushed, thanks!

- Dave

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 05/15] build: syscalls: Add clone syscall wrapper.
  2015-07-07 13:23   ` Ludovic Courtès
@ 2015-07-08  0:28     ` Thompson, David
  2015-07-11 10:18       ` Ludovic Courtès
  0 siblings, 1 reply; 65+ messages in thread
From: Thompson, David @ 2015-07-08  0:28 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

On Tue, Jul 7, 2015 at 9:23 AM, Ludovic Courtès <ludo@gnu.org> wrote:
> David Thompson <dthompson2@worcester.edu> skribis:
>
>> From: David Thompson <davet@gnu.org>
>>
>> * guix/build/syscalls.scm (clone): New procedure.
>>   (CLONE_NEWNS, CLONE_NEWUTS, CLONE_NEWIPC, CLONE_NEWUSER, CLONE_NEWPID,
>>   CLONE_NEWNET): New variables.
>> * tests/syscalls.scm: Test it.
>
> [...]
>
>> +;; The libc interface to sys_clone is not useful for Scheme programs, so the
>> +;; low-level system call is wrapped instead.
>> +(define clone
>> +  (let* ((ptr        (dynamic-func "syscall" (dynamic-link)))
>> +         (proc       (pointer->procedure int ptr (list int int '*)))
>> +         ;; TODO: Handle all supported architectures
>> +         (syscall-id (match (utsname:machine (uname))
>> +                       ("x86_64" 56)
>> +                       (_        120))))
>
> Please add the value for at least i386, mips64el, and armv7 (grep -r
> NR_clone arch/ in the kernel tree.)

Done.  I should mention that Mark really doesn't like this, and
rightfully so.  How can we make this more portable in the future?

>> +  (match (clone (logior CLONE_NEWUSER))
>
> No need for logior.

I ended up needing it because I had to add the SIGCHLD flag. :)

>> +    (0 (primitive-exit 0))
>
> Maybe exit with code 42 here...
>
>> +    (pid
>> +     ;; Check if user namespaces are different.
>> +     (not (equal? (readlink (user-namespace pid))
>> +                  (readlink (user-namespace "self")))))))
>
> ... and here to a waitpid and check the status:exit-val.
>
> OK with these changes.

Done and pushed.  Thanks!

- Dave

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 06/15] build: syscalls: Add setns syscall wrapper.
  2015-07-07 13:28   ` Ludovic Courtès
@ 2015-07-08  0:57     ` Thompson, David
  0 siblings, 0 replies; 65+ messages in thread
From: Thompson, David @ 2015-07-08  0:57 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

On Tue, Jul 7, 2015 at 9:28 AM, Ludovic Courtès <ludo@gnu.org> wrote:
> David Thompson <dthompson2@worcester.edu> skribis:
>
>> From: David Thompson <davet@gnu.org>
>>
>> * guix/build/syscalls.scm (setns): New procedure.
>> * tests/syscalls.scm: Test it.
>
> [...]
>
>> +    (lambda (fdes nstype)
>> +      "Reassociate the current process with the namespace specified by FDES.
>
> “... by FDES, a file descriptor obtained by opening a /proc/PID/ns/*
> files.”
>
>> +(test-assert "setns"
>> +  (match (clone (logior CLONE_NEWUSER))
>> +    (0 (primitive-exit 0))
>> +    (clone-pid
>> +     (match (pipe)
>> +       ((in . out)
>> +        (match (primitive-fork)
>> +          (0
>> +           (close in)
>> +           (call-with-input-file (user-namespace clone-pid)
>> +             (lambda (port)
>> +               (setns (port->fdes port) 0)))
>> +           (write 'done out)
>> +           (close out)
>> +           (primitive-exit 0))
>> +          (fork-pid
>> +           (close out)
>> +           ;; Wait for the child process to join the namespace.
>> +           (read in)
>> +           (equal? (readlink (user-namespace clone-pid))
>> +                   (readlink (user-namespace fork-pid))))))))))
>
> Add a waipid call for both CLONE-PID and FORK-PID to make sure nothing’s
> left behind.
>
> OK with these changes!

Done and pushed.  Thanks!

- Dave

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 07/15] build: syscalls: Add pivot-root.
  2015-07-07 13:35   ` Ludovic Courtès
@ 2015-07-08  1:18     ` Thompson, David
  2015-07-08 12:47       ` Ludovic Courtès
  0 siblings, 1 reply; 65+ messages in thread
From: Thompson, David @ 2015-07-08  1:18 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

On Tue, Jul 7, 2015 at 9:35 AM, Ludovic Courtès <ludo@gnu.org> wrote:
> David Thompson <dthompson2@worcester.edu> skribis:
>
>> From: David Thompson <davet@gnu.org>
>>
>> * guix/build/syscalls.scm (pivot-root): New procedure.
>> * tests/syscalls.scm: Test it.
>
> [...]
>
>> +(test-assert "pivot-root"
>> +  (match (pipe)
>> +    ((in . out)
>> +     (match (clone (logior CLONE_NEWUSER CLONE_NEWNS))
>> +       (0
>> +        (close in)
>> +        (call-with-temporary-directory
>> +         (lambda (root)
>> +           (let ((put-old (string-append root "/real-root")))
>> +             (mount "none" root "tmpfs")
>> +             (mkdir put-old)
>> +             (call-with-output-file (string-append root "/test")
>> +               (lambda (port)
>> +                 (display "testing\n" port)))
>> +             (pivot-root root put-old)
>> +             ;; The test file should now be located inside the root directory.
>> +             (write (file-exists "/test") out)
>> +             (close out))))
>> +        (primitive-exit 0))
>> +       (pid
>> +        (close out)
>> +        (read in))))))
>
> Shouldn’t it be:
>
>   (file-exists? (string-append put-old "/test"))

No, because put-old contains the current system root directory.  I
wanted to test that the file I made in the temporary directory is now
located in the new root file system.  I hope this makes sense.

> To be on the safe side, the last line should probably be:
>
>   (eq? #t (read in))
>
> Otherwise a return value of *unspecified* works as well.

Good call.  I had a typo ('file-exists' instead of 'file-exists?')
that was making this test pass when it should've failed.  That's bad
"test driven development" on my part. ;)

> Also, ‘waidpid’:
>
>   (pid
>     (close out)
>     (let ((result (read in)))
>       (close in)
>       (and (zero? (status:exit-val (waitpid pid)))
>            (eq? #t result))))
>
> OK with these changes.

Fixed and pushed.  Thanks!

- Dave

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 09/15] gnu: system: Move <file-system-mapping> into (gnu system file-systems).
  2015-07-07 13:51   ` Ludovic Courtès
@ 2015-07-08  1:21     ` Thompson, David
  0 siblings, 0 replies; 65+ messages in thread
From: Thompson, David @ 2015-07-08  1:21 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

On Tue, Jul 7, 2015 at 9:51 AM, Ludovic Courtès <ludo@gnu.org> wrote:
> David Thompson <dthompson2@worcester.edu> skribis:
>
>> * gnu/system/vm.scm (<file-system-mapping>, %store-mapping): Move from here...
>> * gnu/system/file-systems.scm: ...to here.
>> * guix/scripts/system.scm: Import (gnu system file-systems).
>
> OK

Pushed.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 10/15] gnu: system: Move file-system->spec to (gnu system file-systems).
  2015-07-07 13:51   ` Ludovic Courtès
@ 2015-07-08  1:22     ` Thompson, David
  0 siblings, 0 replies; 65+ messages in thread
From: Thompson, David @ 2015-07-08  1:22 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

On Tue, Jul 7, 2015 at 9:51 AM, Ludovic Courtès <ludo@gnu.org> wrote:
> David Thompson <dthompson2@worcester.edu> skribis:
>
>> * gnu/system/linux-initrd.scm (file-system->spec): Move this...
>> * gnu/system/file-systems.scm: ... to here.
>
> OK

Pushed.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 08/15] gnu: build: Add Linux container module.
  2015-07-07 13:51   ` Ludovic Courtès
@ 2015-07-08 12:38     ` Thompson, David
  2015-07-08 21:57       ` Ludovic Courtès
  0 siblings, 1 reply; 65+ messages in thread
From: Thompson, David @ 2015-07-08 12:38 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

[-- Attachment #1: Type: text/plain, Size: 2959 bytes --]

On Tue, Jul 7, 2015 at 9:51 AM, Ludovic Courtès <ludo@gnu.org> wrote:
> David Thompson <dthompson2@worcester.edu> skribis:
>
>> * gnu/build/linux-container.scm: New file.
>> * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
>> * .dir-locals.el: Add Scheme indent rules for 'call-with-clone', 'with-clone',
>>   'call-with-container', and 'container-excursion'.
>> * tests/containers.scm: New file.
>> * Makefile.am (SCM_TESTS): Add it.
>
> [...]
>
>> +(define (mount-flags->bit-mask flags)
>> +  "Return the number suitable for the 'flags' argument of 'mount' that
>> +corresponds to the symbols listed in FLAGS."
>> +  (let loop ((flags flags))
>> +    (match flags
>> +      (('read-only rest ...)
>> +       (logior MS_RDONLY (loop rest)))
>> +      (('bind-mount rest ...)
>> +       (logior MS_BIND (loop rest)))
>> +      (('no-suid rest ...)
>> +       (logior MS_NOSUID (loop rest)))
>> +      (('no-dev rest ...)
>> +       (logior MS_NODEV (loop rest)))
>> +      (('no-exec rest ...)
>> +       (logior MS_NOEXEC (loop rest)))
>> +      (()
>> +       0))))
>> +
>> +(define* (mount-file-system spec root)
>> +  "Mount the file system described by SPEC under ROOT.  SPEC must have the
>> +form:
>> +
>> +  (DEVICE TITLE MOUNT-POINT TYPE (FLAGS ...) OPTIONS CHECK?)
>
> Could we share these two procedures with (gnu build file-systems)?
>
> I suspect the problem you encountered is that (gnu build file-systems)
> doesn’t use (guix build syscalls), and instead expects the
> statically-linked Guile with the guile-syscalls.patch.

Yes, that is exactly what happened.

> To work around that, I think we should shamelessly add something like
> this in (gnu build file-system):
>
>   (unless (defined? 'mount)
>     (module-use! (current-module)
>                  (resolve-interface '(guix build syscalls))))
>
> WDYT?

Sounds good.  I've attached an additional patch that does this.

>> +(define (namespaces->bit-mask namespaces)
>> +  "Return the number suitable for the 'flags' argument of 'clone' that
>> +corresponds to the symbols in NAMESPACES."
>
> I would be in favor of “name spaces” (two words), but maybe that’s
> because I’m an old fart, so I won’t insist.

All of the Linux documentation uses "namespaces" as a single word, so
I'd prefer to keep it consistent, but I don't care too much.

>> +(test-assert "call-with-container, pid namespace"
>> +  (zero?
>> +   (call-with-container '()
>> +     (lambda ()
>> +       (match (primitive-fork)
>> +         (0
>> +          ;; The first forked process in the new pid namespace is pid 2.
>> +          (assert-exit (= 2 (getpid))))
>
> But its parent doesn’t sees itself as PID 1?

Only if it were to 'exec'.  The reason being that PID namespaces are
special in how they treat the process that created the new namespace.
It's somewhat confusing.

How do the new patches look?

Thanks!

- Dave

[-- Attachment #2: 0001-build-file-systems-Import-guix-build-syscalls-for-no.patch --]
[-- Type: text/x-diff, Size: 1503 bytes --]

From 83943ab47145180f13d3c08490a9ae09fccf3b92 Mon Sep 17 00:00:00 2001
From: David Thompson <dthompson2@worcester.edu>
Date: Tue, 7 Jul 2015 21:58:15 -0400
Subject: [PATCH 1/2] build: file-systems: Import (guix build syscalls) for
 non-static Guiles.

* gnu/build/file-systems.scm: Import (guix build syscalls) when 'mount' is not
  defined.
* gnu/system.scm (operating-system-activation-script): Include (guix build
  syscalls) module in derivation.
---
 gnu/build/file-systems.scm | 7 +++++++
 gnu/system.scm             | 1 +
 2 files changed, 8 insertions(+)

diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm
index 72c8bd5..04431ba 100644
--- a/gnu/build/file-systems.scm
+++ b/gnu/build/file-systems.scm
@@ -50,6 +50,13 @@
 ;;;
 ;;; Code:
 
+;; 'mount' is already defined in the statically linked Guile used for initial
+;; RAM disks, but in all other cases the (guix build syscalls) module contains
+;; the mount binding.
+(unless (defined? 'mount)
+  (module-use! (current-module)
+               (resolve-interface '(guix build syscalls))))
+
 ;; Linux mount flags, from libc's <sys/mount.h>.
 (define MS_RDONLY 1)
 (define MS_NOSUID 2)
diff --git a/gnu/system.scm b/gnu/system.scm
index d63804a..efad145 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -689,6 +689,7 @@ etc."
       (gnu build linux-modules)
       (gnu build file-systems)
       (guix build utils)
+      (guix build syscalls)
       (guix elf)))
 
   (define (service-activations services)
-- 
2.4.3


[-- Attachment #3: 0002-gnu-build-Add-Linux-container-module.patch --]
[-- Type: text/x-diff, Size: 16537 bytes --]

From 72705fd6a8cd7b60bd727221897dc8bb79e3e4d7 Mon Sep 17 00:00:00 2001
From: David Thompson <davet@gnu.org>
Date: Tue, 2 Jun 2015 08:48:16 -0400
Subject: [PATCH 2/2] gnu: build: Add Linux container module.

* gnu/build/linux-container.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* .dir-locals.el: Add Scheme indent rules for 'call-with-clone', 'with-clone',
  'call-with-container', and 'container-excursion'.
* tests/containers.scm: New file.
* Makefile.am (SCM_TESTS): Add it.
---
 .dir-locals.el                |   5 +
 Makefile.am                   |   3 +-
 gnu-system.am                 |   1 +
 gnu/build/linux-container.scm | 260 ++++++++++++++++++++++++++++++++++++++++++
 tests/containers.scm          | 111 ++++++++++++++++++
 5 files changed, 379 insertions(+), 1 deletion(-)
 create mode 100644 gnu/build/linux-container.scm
 create mode 100644 tests/containers.scm

diff --git a/.dir-locals.el b/.dir-locals.el
index cbcb120..65e1c6d 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -59,6 +59,11 @@
    (eval . (put 'run-with-state 'scheme-indent-function 1))
    (eval . (put 'wrap-program 'scheme-indent-function 1))
 
+   (eval . (put 'call-with-clone 'scheme-indent-function 1))
+   (eval . (put 'with-clone 'scheme-indent-function 1))
+   (eval . (put 'call-with-container 'scheme-indent-function 1))
+   (eval . (put 'container-excursion 'scheme-indent-function 1))
+
    ;; Recognize '~', '+', and '$', as used for gexps, as quotation symbols.
    ;; This notably allows '(' in Paredit to not insert a space when the
    ;; preceding symbol is one of these.
diff --git a/Makefile.am b/Makefile.am
index 44d3b09..8665e27 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -197,7 +197,8 @@ SCM_TESTS =					\
   tests/gremlin.scm				\
   tests/lint.scm				\
   tests/publish.scm				\
-  tests/size.scm
+  tests/size.scm				\
+  tests/containers.scm
 
 if HAVE_GUILE_JSON
 
diff --git a/gnu-system.am b/gnu-system.am
index 11ae3e6..931b109 100644
--- a/gnu-system.am
+++ b/gnu-system.am
@@ -356,6 +356,7 @@ GNU_SYSTEM_MODULES =				\
   gnu/build/file-systems.scm			\
   gnu/build/install.scm				\
   gnu/build/linux-boot.scm			\
+  gnu/build/linux-container.scm			\
   gnu/build/linux-initrd.scm			\
   gnu/build/linux-modules.scm			\
   gnu/build/vm.scm
diff --git a/gnu/build/linux-container.scm b/gnu/build/linux-container.scm
new file mode 100644
index 0000000..8332fb4
--- /dev/null
+++ b/gnu/build/linux-container.scm
@@ -0,0 +1,260 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2015 David Thompson <davet@gnu.org>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu build linux-container)
+  #:use-module (ice-9 format)
+  #:use-module (ice-9 match)
+  #:use-module (srfi srfi-98)
+  #:use-module (guix utils)
+  #:use-module (guix build utils)
+  #:use-module (guix build syscalls)
+  #:use-module ((gnu build file-systems) #:select (mount-file-system))
+  #:export (%namespaces
+            run-container
+            call-with-container
+            container-excursion))
+
+(define %namespaces
+  '(mnt pid ipc uts user net))
+
+(define (call-with-clean-exit thunk)
+  "Apply THUNK, but exit with a status code of 1 if it fails."
+  (dynamic-wind
+    (const #t)
+    thunk
+    (lambda ()
+      (primitive-exit 1))))
+
+(define (purify-environment)
+  "Unset all environment variables."
+  (for-each unsetenv
+            (match (get-environment-variables)
+              (((names . _) ...) names))))
+
+;; The container setup procedure closely resembles that of the Docker
+;; specification:
+;; https://raw.githubusercontent.com/docker/libcontainer/master/SPEC.md
+(define* (mount-file-systems root mounts #:key mount-/sys? mount-/proc?)
+  "Mount the essential file systems and the those in the MOUNTS list relative
+to ROOT, then make ROOT the new root directory for the process."
+  (define (scope dir)
+    (string-append root dir))
+
+  (define (bind-mount src dest)
+    (mount src dest "none" MS_BIND))
+
+  ;; Like mount, but creates the mount point if it doesn't exist.
+  (define* (mount* source target type #:optional (flags 0) options
+                   #:key (update-mtab? #f))
+    (mkdir-p target)
+    (mount source target type flags options #:update-mtab? update-mtab?))
+
+  ;; The container's file system is completely ephemeral, sans directories
+  ;; bind-mounted from the host.
+  (mount "none" root "tmpfs")
+
+  ;; A proc mount requires a new pid namespace.
+  (when mount-/proc?
+    (mount* "none" (scope "/proc") "proc"
+            (logior MS_NOEXEC MS_NOSUID MS_NODEV)))
+
+  ;; A sysfs mount requires the user to have the CAP_SYS_ADMIN capability in
+  ;; the current network namespace.
+  (when mount-/sys?
+    (mount* "none" (scope "/sys") "sysfs"
+            (logior MS_NOEXEC MS_NOSUID MS_NODEV MS_RDONLY)))
+
+  (mount* "none" (scope "/dev") "tmpfs"
+          (logior MS_NOEXEC MS_STRICTATIME)
+          "mode=755")
+
+  ;; Create essential device nodes via bind-mounting them from the
+  ;; host, because a process within a user namespace cannot create
+  ;; device nodes.
+  (for-each (lambda (device)
+              (when (file-exists? device)
+                ;; Create the mount point file.
+                (call-with-output-file (scope device)
+                  (const #t))
+                (bind-mount device (scope device))))
+            '("/dev/null"
+              "/dev/zero"
+              "/dev/full"
+              "/dev/random"
+              "/dev/urandom"
+              "/dev/tty"
+              "/dev/ptmx"
+              "/dev/fuse"))
+
+  ;; Setup standard input/output/error.
+  (symlink "/proc/self/fd"   (scope "/dev/fd"))
+  (symlink "/proc/self/fd/0" (scope "/dev/stdin"))
+  (symlink "/proc/self/fd/1" (scope "/dev/stdout"))
+  (symlink "/proc/self/fd/2" (scope "/dev/stderr"))
+
+  ;; Mount user-specified file systems.
+  (for-each (lambda (spec)
+              (mount-file-system spec #:root root))
+            mounts)
+
+  ;; Jail the process inside the container's root file system.
+  (let ((put-old (string-append root "/real-root")))
+    (mkdir put-old)
+    (pivot-root root put-old)
+    (chdir "/")
+    (umount "real-root" MNT_DETACH)
+    (rmdir "real-root")))
+
+(define (initialize-user-namespace pid)
+  "Configure the user namespace for PID."
+  (define proc-dir
+    (string-append "/proc/" (number->string pid)))
+
+  (define (scope file)
+    (string-append proc-dir file))
+
+  ;; Only root can map more than a single uid/gid.  A range of 65536 uid/gids
+  ;; is used to cover 16 bits worth of users and groups, which is sufficient
+  ;; for most cases.
+  ;;
+  ;; See also: http://www.freedesktop.org/software/systemd/man/systemd-nspawn.html#--private-users=
+  (let* ((uid       (getuid))
+         (gid       (getgid))
+         (uid-range (if (zero? uid) 65536 1))
+         (gid-range (if (zero? gid) 65536 1)))
+
+    ;; Only root can write to the gid map without first disabling the
+    ;; setgroups syscall.
+    (unless (and (zero? uid) (zero? gid))
+      (call-with-output-file (scope "/setgroups")
+        (lambda (port)
+          (display "deny" port))))
+
+    ;; Map the user/group that created the container to the root user
+    ;; within the container.
+    (call-with-output-file (scope "/uid_map")
+      (lambda (port)
+        (format port "0 ~d ~d" uid uid-range)))
+    (call-with-output-file (scope "/gid_map")
+      (lambda (port)
+        (format port "0 ~d ~d" gid gid-range)))))
+
+(define (namespaces->bit-mask namespaces)
+  "Return the number suitable for the 'flags' argument of 'clone' that
+corresponds to the symbols in NAMESPACES."
+  (apply logior SIGCHLD
+         (map (match-lambda
+               ('mnt  CLONE_NEWNS)
+               ('uts  CLONE_NEWUTS)
+               ('ipc  CLONE_NEWIPC)
+               ('user CLONE_NEWUSER)
+               ('pid  CLONE_NEWPID)
+               ('net  CLONE_NEWNET))
+              namespaces)))
+
+(define (run-container root mounts namespaces thunk)
+  "Run THUNK in a new container process and return its PID.  ROOT specifies
+the root directory for the container.  MOUNTS is a list of file system specs
+that specify the mapping of host file systems into the container.  NAMESPACES
+is a list of symbols that correspond to the possible Linux namespaces: mnt,
+ipc, uts, user, and net."
+  ;; The parent process must initialize the user namespace for the child
+  ;; before it can boot.  To negotiate this, a pipe is used such that the
+  ;; child process blocks until the parent writes to it.
+  (match (pipe)
+    ((in . out)
+     (let ((flags (namespaces->bit-mask namespaces)))
+       (match (clone flags)
+         (0
+          (call-with-clean-exit
+           (lambda ()
+             (close out)
+             ;; Wait for parent to set things up.
+             (read in)
+             (close in)
+             (purify-environment)
+             (when (memq 'mnt namespaces)
+               (mount-file-systems root mounts
+                                   #:mount-/proc? (memq 'pid namespaces)
+                                   #:mount-/sys?  (memq 'net namespaces)))
+             ;; TODO: Manage capabilities.
+             (thunk))))
+         (pid
+          (when (memq 'user namespaces)
+            (initialize-user-namespace pid))
+          ;; TODO: Initialize cgroups.
+          (close in)
+          (write 'ready out)
+          (close out)
+          pid))))))
+
+(define* (call-with-container mounts thunk #:key (namespaces %namespaces))
+  "Run THUNK in a new container process and return its exit status.
+MOUNTS is a list of file system specs that specify the mapping of host file
+systems into the container.  NAMESPACES is a list of symbols corresponding to
+the identifiers for Linux namespaces: mnt, ipc, uts, pid, user, and net.  By
+default, all namespaces are used."
+  (call-with-temporary-directory
+   (lambda (root)
+     (let ((pid (run-container root mounts namespaces thunk)))
+       ;; Catch SIGINT and kill the container process.
+       (sigaction SIGINT
+         (lambda (signum)
+           (false-if-exception
+            (kill pid SIGKILL))))
+
+       (match (waitpid pid)
+         ((_ . status) status))))))
+
+(define (container-excursion pid thunk)
+  "Run THUNK as a child process within the namespaces of process PID and
+return the exit status."
+  (define (namespace-file pid namespace)
+    (string-append "/proc/" (number->string pid) "/ns/" namespace))
+
+  (define (fork+waitpid thunk)
+    (match (primitive-fork)
+      (0 (call-with-clean-exit thunk))
+      (pid
+       (match (waitpid pid)
+         ((_ . status)
+          (status:exit-val status))))))
+
+  (fork+waitpid
+   (lambda ()
+     (for-each (lambda (ns)
+                 (call-with-input-file (namespace-file (getpid) ns)
+                   (lambda (current-ns-port)
+                     (call-with-input-file (namespace-file pid ns)
+                       (lambda (new-ns-port)
+                         ;; Joining the namespace that the process
+                         ;; already belongs to would throw an error.
+                         (unless (= (port->fdes current-ns-port)
+                                    (port->fdes new-ns-port))
+                           (setns (port->fdes new-ns-port) 0)))))))
+               ;; It's important that the user namespace is joined first,
+               ;; so that the user will have the privileges to join the
+               ;; other namespaces.  Furthermore, it's important that the
+               ;; mount namespace is joined last, otherwise the /proc mount
+               ;; point would no longer be accessible.
+               '("user" "ipc" "uts" "net" "pid" "mnt"))
+     (purify-environment)
+     (chdir "/")
+     ;; Fork again so that the pid is within the context of the joined pid
+     ;; namespace instead of the original pid namespace.
+     (primitive-exit (fork+waitpid thunk)))))
diff --git a/tests/containers.scm b/tests/containers.scm
new file mode 100644
index 0000000..329f300
--- /dev/null
+++ b/tests/containers.scm
@@ -0,0 +1,111 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2015 David Thompson <davet@gnu.org>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (test-containers)
+  #:use-module (guix utils)
+  #:use-module (guix build syscalls)
+  #:use-module (gnu build linux-container)
+  #:use-module (srfi srfi-64)
+  #:use-module (ice-9 match))
+
+(define (assert-exit x)
+  (primitive-exit (if x 0 1)))
+
+(test-begin "containers")
+
+(test-assert "call-with-container, user namespace"
+  (zero?
+   (call-with-container '()
+     (lambda ()
+       ;; The user is root within the new user namespace.
+       (assert-exit (and (zero? (getuid)) (zero? (getgid)))))
+     #:namespaces '(user))))
+
+(test-assert "call-with-container, uts namespace"
+  (zero?
+   (call-with-container '()
+     (lambda ()
+       ;; The user is root within the container and should be able to change
+       ;; the hostname of that container.
+       (sethostname "test-container")
+       (primitive-exit 0))
+     #:namespaces '(user uts))))
+
+(test-assert "call-with-container, pid namespace"
+  (zero?
+   (call-with-container '()
+     (lambda ()
+       (match (primitive-fork)
+         (0
+          ;; The first forked process in the new pid namespace is pid 2.
+          (assert-exit (= 2 (getpid))))
+         (pid
+          (primitive-exit
+           (match (waitpid pid)
+             ((_ . status)
+              (status:exit-val status)))))))
+     #:namespaces '(user pid))))
+
+(test-assert "call-with-container, mnt namespace"
+  (zero?
+   (call-with-container '(("none" "" "/testing" "tmpfs" () "" #f))
+     (lambda ()
+       (assert-exit (file-exists? "/testing")))
+     #:namespaces '(user mnt))))
+
+(test-assert "call-with-container, all namespaces"
+  (zero?
+   (call-with-container '()
+     (lambda ()
+       (primitive-exit 0)))))
+
+(test-assert "container-excursion"
+  (call-with-temporary-directory
+   (lambda (root)
+     (match (pipe)
+       ((in . out)
+        (define (container)
+          (close out)
+          ;; Wait for test completion.
+          (read in)
+          (close in))
+
+        (define (namespaces pid)
+          (let ((pid (number->string pid)))
+            (map (lambda (ns)
+                   (readlink (string-append "/proc/" pid "/ns/" ns)))
+                 '("user" "ipc" "uts" "net" "pid" "mnt"))))
+
+        (let* ((pid (run-container root '() %namespaces container))
+               (container-namespaces (namespaces pid))
+               ;; Check that all of the namespace identifiers are the same as
+               ;; the container process.
+               (status (container-excursion pid
+                         (lambda ()
+                           (assert-exit
+                            (equal? container-namespaces
+                                    (namespaces (getpid))))))))
+          ;; Stop the container.
+          (write 'done out)
+          (close out)
+          (zero? status)))))))
+
+(test-end)
+
+\f
+(exit (= (test-runner-fail-count (test-runner-current)) 0))
-- 
2.4.3


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* Re: [PATCH 07/15] build: syscalls: Add pivot-root.
  2015-07-08  1:18     ` Thompson, David
@ 2015-07-08 12:47       ` Ludovic Courtès
  0 siblings, 0 replies; 65+ messages in thread
From: Ludovic Courtès @ 2015-07-08 12:47 UTC (permalink / raw)
  To: Thompson, David; +Cc: guix-devel, David Thompson

"Thompson, David" <dthompson2@worcester.edu> skribis:

> On Tue, Jul 7, 2015 at 9:35 AM, Ludovic Courtès <ludo@gnu.org> wrote:
>> David Thompson <dthompson2@worcester.edu> skribis:
>>
>>> From: David Thompson <davet@gnu.org>
>>>
>>> * guix/build/syscalls.scm (pivot-root): New procedure.
>>> * tests/syscalls.scm: Test it.
>>
>> [...]
>>
>>> +(test-assert "pivot-root"
>>> +  (match (pipe)
>>> +    ((in . out)
>>> +     (match (clone (logior CLONE_NEWUSER CLONE_NEWNS))
>>> +       (0
>>> +        (close in)
>>> +        (call-with-temporary-directory
>>> +         (lambda (root)
>>> +           (let ((put-old (string-append root "/real-root")))
>>> +             (mount "none" root "tmpfs")
>>> +             (mkdir put-old)
>>> +             (call-with-output-file (string-append root "/test")
>>> +               (lambda (port)
>>> +                 (display "testing\n" port)))
>>> +             (pivot-root root put-old)
>>> +             ;; The test file should now be located inside the root directory.
>>> +             (write (file-exists "/test") out)
>>> +             (close out))))
>>> +        (primitive-exit 0))
>>> +       (pid
>>> +        (close out)
>>> +        (read in))))))
>>
>> Shouldn’t it be:
>>
>>   (file-exists? (string-append put-old "/test"))
>
> No, because put-old contains the current system root directory.  I
> wanted to test that the file I made in the temporary directory is now
> located in the new root file system.  I hope this makes sense.

Oh, right.  (The other part was the missing question mark, as you
noticed.)

Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 08/15] gnu: build: Add Linux container module.
  2015-07-08 12:38     ` Thompson, David
@ 2015-07-08 21:57       ` Ludovic Courtès
  2015-07-09 12:56         ` Thompson, David
  0 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-07-08 21:57 UTC (permalink / raw)
  To: Thompson, David; +Cc: guix-devel, David Thompson

"Thompson, David" <dthompson2@worcester.edu> skribis:

>>> +(test-assert "call-with-container, pid namespace"
>>> +  (zero?
>>> +   (call-with-container '()
>>> +     (lambda ()
>>> +       (match (primitive-fork)
>>> +         (0
>>> +          ;; The first forked process in the new pid namespace is pid 2.
>>> +          (assert-exit (= 2 (getpid))))
>>
>> But its parent doesn’t sees itself as PID 1?
>
> Only if it were to 'exec'.  The reason being that PID namespaces are
> special in how they treat the process that created the new namespace.
> It's somewhat confusing.

Hmm, indeed.  :-)

> From 83943ab47145180f13d3c08490a9ae09fccf3b92 Mon Sep 17 00:00:00 2001
> From: David Thompson <dthompson2@worcester.edu>
> Date: Tue, 7 Jul 2015 21:58:15 -0400
> Subject: [PATCH 1/2] build: file-systems: Import (guix build syscalls) for
>  non-static Guiles.
>
> * gnu/build/file-systems.scm: Import (guix build syscalls) when 'mount' is not
>   defined.
> * gnu/system.scm (operating-system-activation-script): Include (guix build
>   syscalls) module in derivation.

LGTM.

> From 72705fd6a8cd7b60bd727221897dc8bb79e3e4d7 Mon Sep 17 00:00:00 2001
> From: David Thompson <davet@gnu.org>
> Date: Tue, 2 Jun 2015 08:48:16 -0400
> Subject: [PATCH 2/2] gnu: build: Add Linux container module.
>
> * gnu/build/linux-container.scm: New file.
> * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
> * .dir-locals.el: Add Scheme indent rules for 'call-with-clone', 'with-clone',
>   'call-with-container', and 'container-excursion'.
> * tests/containers.scm: New file.
> * Makefile.am (SCM_TESTS): Add it.

OK!

Thanks,
Ludo'.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 08/15] gnu: build: Add Linux container module.
  2015-07-08 21:57       ` Ludovic Courtès
@ 2015-07-09 12:56         ` Thompson, David
  0 siblings, 0 replies; 65+ messages in thread
From: Thompson, David @ 2015-07-09 12:56 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

On Wed, Jul 8, 2015 at 5:57 PM, Ludovic Courtès <ludo@gnu.org> wrote:
> "Thompson, David" <dthompson2@worcester.edu> skribis:
>
>>>> +(test-assert "call-with-container, pid namespace"
>>>> +  (zero?
>>>> +   (call-with-container '()
>>>> +     (lambda ()
>>>> +       (match (primitive-fork)
>>>> +         (0
>>>> +          ;; The first forked process in the new pid namespace is pid 2.
>>>> +          (assert-exit (= 2 (getpid))))
>>>
>>> But its parent doesn’t sees itself as PID 1?
>>
>> Only if it were to 'exec'.  The reason being that PID namespaces are
>> special in how they treat the process that created the new namespace.
>> It's somewhat confusing.
>
> Hmm, indeed.  :-)
>
>> From 83943ab47145180f13d3c08490a9ae09fccf3b92 Mon Sep 17 00:00:00 2001
>> From: David Thompson <dthompson2@worcester.edu>
>> Date: Tue, 7 Jul 2015 21:58:15 -0400
>> Subject: [PATCH 1/2] build: file-systems: Import (guix build syscalls) for
>>  non-static Guiles.
>>
>> * gnu/build/file-systems.scm: Import (guix build syscalls) when 'mount' is not
>>   defined.
>> * gnu/system.scm (operating-system-activation-script): Include (guix build
>>   syscalls) module in derivation.
>
> LGTM.
>
>> From 72705fd6a8cd7b60bd727221897dc8bb79e3e4d7 Mon Sep 17 00:00:00 2001
>> From: David Thompson <davet@gnu.org>
>> Date: Tue, 2 Jun 2015 08:48:16 -0400
>> Subject: [PATCH 2/2] gnu: build: Add Linux container module.
>>
>> * gnu/build/linux-container.scm: New file.
>> * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
>> * .dir-locals.el: Add Scheme indent rules for 'call-with-clone', 'with-clone',
>>   'call-with-container', and 'container-excursion'.
>> * tests/containers.scm: New file.
>> * Makefile.am (SCM_TESTS): Add it.
>
> OK!

I found and fixed the race condition in the 'container-excursion' test. Pushed!

- Dave

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 12/15] gnu: system: Add Linux container file systems.
  2015-07-07 13:56   ` Ludovic Courtès
@ 2015-07-09 12:56     ` Thompson, David
  0 siblings, 0 replies; 65+ messages in thread
From: Thompson, David @ 2015-07-09 12:56 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

On Tue, Jul 7, 2015 at 9:56 AM, Ludovic Courtès <ludo@gnu.org> wrote:
> David Thompson <dthompson2@worcester.edu> skribis:
>
>> * gnu/system/file-systems.scm (%container-file-systems): New variable.
>
> [...]
>
>> +(define %container-file-systems
>
> Could you add a comment explaining how they differ from
> %base-file-systems and why it must be done this way?
>
> Otherwise OK.

Done and pushed!

- Dave

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 11/15] gnu: system: Add Linux container module.
  2015-07-07 13:55   ` Ludovic Courtès
@ 2015-07-09 13:00     ` Thompson, David
  2015-07-10 17:57       ` Ludovic Courtès
  0 siblings, 1 reply; 65+ messages in thread
From: Thompson, David @ 2015-07-09 13:00 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

[-- Attachment #1: Type: text/plain, Size: 1435 bytes --]

On Tue, Jul 7, 2015 at 9:55 AM, Ludovic Courtès <ludo@gnu.org> wrote:
> David Thompson <dthompson2@worcester.edu> skribis:
>
>> * gnu/system/linux-container.scm: New file.
>> * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
>> * gnu/system.scm: Export 'operating-system-etc-directory',
>>   'operating-system-boot-script', 'operating-system-locale-directory', and
>>   'file-union'.
>>   (operating-system-boot-script): Add #:container? keyword argument.
>>   (operating-system-activation-script): Add #:container?  keyword argument.
>>   Don't call 'activate-firmware' or 'activate-ptrace-attach' when activating a
>>   container.
>
> [...]
>
>> +(define* (operating-system-boot-script os #:key container?)
>>    "Return the boot script for OS---i.e., the code started by the initrd once
>>  we're running in the final root."
>
> Augment the docstring with something like:
>
>   When CONTAINER? is true, skip all hardware-related operations as
>   necessary when booting a Linux container.
>
>> +(define (system-container os)
>
> docstring
>
>> +(define* (container-script os #:key (mappings '()))
>
> docstring
>
> OK with these changes!

I made these changes and added a 'containerized-operating-system'
procedure to the module that does something similar to
'virtualized-operating-system' in (gnu system vm), as discussed in the
main thread.

Updated patch attached. WDYT?

- Dave

- Dave

[-- Attachment #2: 0001-gnu-system-Add-Linux-container-module.patch --]
[-- Type: text/x-diff, Size: 9291 bytes --]

From 7c41e765a91f6a4c50b692f6230d6e0e3e3b7099 Mon Sep 17 00:00:00 2001
From: David Thompson <davet@gnu.org>
Date: Mon, 8 Jun 2015 08:59:00 -0400
Subject: [PATCH] gnu: system: Add Linux container module.

* gnu/system/linux-container.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* gnu/system.scm: Export 'operating-system-etc-directory',
  'operating-system-boot-script', 'operating-system-locale-directory', and
  'file-union'.
  (operating-system-boot-script): Add #:container? keyword argument.
  (operating-system-activation-script): Add #:container?  keyword argument.
  Don't call 'activate-firmware' or 'activate-ptrace-attach' when activating a
  container.
---
 gnu-system.am                  |   1 +
 gnu/system.scm                 |  30 +++++++----
 gnu/system/linux-container.scm | 118 +++++++++++++++++++++++++++++++++++++++++
 3 files changed, 139 insertions(+), 10 deletions(-)
 create mode 100644 gnu/system/linux-container.scm

diff --git a/gnu-system.am b/gnu-system.am
index d6369b5..83d04d8 100644
--- a/gnu-system.am
+++ b/gnu-system.am
@@ -346,6 +346,7 @@ GNU_SYSTEM_MODULES =				\
   gnu/system/grub.scm				\
   gnu/system/install.scm			\
   gnu/system/linux.scm				\
+  gnu/system/linux-container.scm		\
   gnu/system/linux-initrd.scm			\
   gnu/system/locale.scm				\
   gnu/system/nss.scm				\
diff --git a/gnu/system.scm b/gnu/system.scm
index efad145..3ec1a4c 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -82,6 +82,11 @@
             operating-system-derivation
             operating-system-profile
             operating-system-grub.cfg
+            operating-system-etc-directory
+            operating-system-locale-directory
+            operating-system-boot-script
+
+            file-union
 
             local-host-aliases
             %setuid-programs
@@ -679,7 +684,7 @@ variable is not set---hence the need for this wrapper."
                       (apply execl #$modprobe
                              (cons #$modprobe (cdr (command-line))))))))
 
-(define (operating-system-activation-script os)
+(define* (operating-system-activation-script os #:key container?)
   "Return the activation script for OS---i.e., the code that \"activates\" the
 stateful part of OS, including user accounts and groups, special directories,
 etc."
@@ -753,12 +758,15 @@ etc."
                     ;; Tell the kernel to use our 'modprobe' command.
                     (activate-modprobe #$modprobe)
 
-                    ;; Tell the kernel where firmware is.
-                    (activate-firmware
-                     (string-append #$firmware "/lib/firmware"))
-
-                    ;; Let users debug their own processes!
-                    (activate-ptrace-attach)
+                    ;; Tell the kernel where firmware is, unless we are
+                    ;; activating a container.
+                    #$@(if container?
+                           #~()
+                           ;; Tell the kernel where firmware is.
+                           #~((activate-firmware
+                               (string-append #$firmware "/lib/firmware"))
+                              ;; Let users debug their own processes!
+                              (activate-ptrace-attach)))
 
                     ;; Run the services' activation snippets.
                     ;; TODO: Use 'load-compiled'.
@@ -767,11 +775,13 @@ etc."
                     ;; Set up /run/current-system.
                     (activate-current-system)))))
 
-(define (operating-system-boot-script os)
+(define* (operating-system-boot-script os #:key container?)
   "Return the boot script for OS---i.e., the code started by the initrd once
-we're running in the final root."
+we're running in the final root.  When CONTAINER? is true, skip all
+hardware-related operations as necessary when booting a Linux container."
   (mlet* %store-monad ((services (operating-system-services os))
-                       (activate (operating-system-activation-script os))
+                       (activate (operating-system-activation-script
+                                  os #:container? container?))
                        (dmd-conf (dmd-configuration-file services)))
     (gexp->file "boot"
                 #~(begin
diff --git a/gnu/system/linux-container.scm b/gnu/system/linux-container.scm
new file mode 100644
index 0000000..9e9bfea
--- /dev/null
+++ b/gnu/system/linux-container.scm
@@ -0,0 +1,118 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2015 David Thompson <davet@gnu.org>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu system linux-container)
+  #:use-module (ice-9 match)
+  #:use-module (srfi srfi-1)
+  #:use-module (guix config)
+  #:use-module (guix store)
+  #:use-module (guix gexp)
+  #:use-module (guix derivations)
+  #:use-module (guix monads)
+  #:use-module (gnu build linux-container)
+  #:use-module (gnu system)
+  #:use-module (gnu system file-systems)
+  #:export (mapping->file-system
+            system-container
+            containerized-operating-system
+            container-script))
+
+(define (mapping->file-system mapping)
+  "Return a file system that realizes MAPPING."
+  (match mapping
+    (($ <file-system-mapping> source target writable?)
+     (file-system
+       (mount-point target)
+       (device source)
+       (type "none")
+       (flags (if writable?
+                  '(bind-mount)
+                  '(bind-mount read-only)))
+       (check? #f)
+       (create-mount-point? #t)))))
+
+(define (system-container os)
+  "Return a derivation that builds OS as a Linux container."
+  (mlet* %store-monad
+      ((profile (operating-system-profile os))
+       (etc     (operating-system-etc-directory os))
+       (boot    (operating-system-boot-script os #:container? #t))
+       (locale  (operating-system-locale-directory os)))
+    (file-union "system-container"
+                `(("boot" ,#~#$boot)
+                  ("profile" ,#~#$profile)
+                  ("locale" ,#~#$locale)
+                  ("etc" ,#~#$etc)))))
+
+(define (containerized-operating-system os mappings)
+  "Return an operating system based on OS for use in a Linux container
+environment.  MAPPINGS is a list of <file-system-mapping> to realize in the
+containerized OS."
+  (define user-file-systems
+    (remove (lambda (fs)
+              (let ((target (file-system-mount-point fs))
+                    (source (file-system-device fs)))
+                (or (string=? target (%store-prefix))
+                    (string=? target "/")
+                    (string-prefix? "/dev/" source)
+                    (string-prefix? "/dev" target)
+                    (string-prefix? "/sys" target))))
+            (operating-system-file-systems os)))
+
+  (define (mapping->fs fs)
+    (file-system (inherit (mapping->file-system fs))
+      (needed-for-boot? #t)))
+
+  (operating-system (inherit os)
+    (swap-devices '()) ; disable swap
+    (file-systems (append (map mapping->fs (cons %store-mapping mappings))
+                          %container-file-systems
+                          user-file-systems))))
+
+(define* (container-script os #:key (mappings '()))
+  "Return a derivation of a script that runs OS as a Linux container.
+MAPPINGS is a list of <file-system> objects that specify the files/directories
+that will be shared with the host system."
+  (let* ((os           (containerized-operating-system os mappings))
+         (file-systems (filter file-system-needed-for-boot?
+                               (operating-system-file-systems os)))
+         (specs        (map file-system->spec file-systems)))
+
+    (mlet* %store-monad ((os-drv (system-container os)))
+
+      (define script
+        #~(begin
+            (use-modules (gnu build linux-container))
+
+            (call-with-container '#$specs
+              (lambda ()
+                (setenv "HOME" "/root")
+                (setenv "TMPDIR" "/tmp")
+                (setenv "GUIX_NEW_SYSTEM" #$os-drv)
+                (for-each mkdir '("/run" "/bin" "/etc" "/home" "/var"))
+                (primitive-load (string-append #$os-drv "/boot"))))))
+
+      (gexp->script "run-container" script
+                    #:modules '((ice-9 match)
+                                (srfi srfi-98)
+                                (guix config)
+                                (guix utils)
+                                (guix build utils)
+                                (guix build syscalls)
+                                (gnu build file-systems)
+                                (gnu build linux-container))))))
-- 
2.4.3


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* Re: [PATCH 14/15] scripts: environment: Add --container option.
  2015-07-07 14:35   ` Ludovic Courtès
@ 2015-07-09 13:16     ` Thompson, David
  2015-07-10 18:03       ` Ludovic Courtès
  2015-09-05 23:45     ` Thompson, David
  1 sibling, 1 reply; 65+ messages in thread
From: Thompson, David @ 2015-07-09 13:16 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

On Tue, Jul 7, 2015 at 10:35 AM, Ludovic Courtès <ludo@gnu.org> wrote:
> David Thompson <dthompson2@worcester.edu> skribis:
>
>> * guix/scripts/enviroment.scm (show-help): Show help for new option.
>>   (%options): Add --container option.
>>   (launch-environment, launch-environment/container): New procedures.
>>   (guix-environment): Spawn new process in a container when requested.
>> * doc/guix.texi (Invoking guix environment): Document it.
>
> [...]
>
>> --- a/doc/guix.texi
>> +++ b/doc/guix.texi
>> @@ -4191,6 +4191,15 @@ NumPy:
>>  guix environment --ad-hoc python2-numpy python-2.7 -E python
>>  @end example
>>
>> +Sometimes it is desirable to isolate the environment as much as
>> +possible, for maximal purity and reproducibility.
>
> + “In particular, when using Guix on a host distro that is not GuixSD,
>   it is desirable to prevent access to @file{/usr/bin} and other
>   system-wide resources from the development environment.”
>
>> +following command spawns a Guile REPL in a ``container'' where only the
>> +store and the current working directory are mounted:
>
> @cindex container
>
>> +@item --container
>> +@itemx -C
>> +Run command within an isolated container.  The current working directory
>
> @var{command}
>
> Since this works without root privileges, what about adding a test in
> tests/guix-environment.sh?
>
> Basically something similar to one of the existing tests, but
> additionally checking from within the container that ‘id -u’ returns 0,
> that ‘$$’ is 2, and that files outside of $PWD are not in the container.

For some reason that I haven't figured out, the existing tests do not
pass on my machine when I run:

    make check TESTS=tests/guix-environment.sh

I'm finding it difficult to debug our tests because the test runner
eats backtraces and other useful info.

> Which reminds me: In a separate commit, it Would Be Nice to document our
> minimal kernel requirements for the container functionality.  Could you
> look into that?

AFAIK the recommended minimal kernel version that folks should be
using for this stuff is 3.13, and the kernel needs to be configured
with that DEVPTS_MULTIPLE_INSTANCES flag.  Where would you put this
information?

Thanks,

- Dave

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 11/15] gnu: system: Add Linux container module.
  2015-07-09 13:00     ` Thompson, David
@ 2015-07-10 17:57       ` Ludovic Courtès
  0 siblings, 0 replies; 65+ messages in thread
From: Ludovic Courtès @ 2015-07-10 17:57 UTC (permalink / raw)
  To: Thompson, David; +Cc: guix-devel, David Thompson

"Thompson, David" <dthompson2@worcester.edu> skribis:

> From 7c41e765a91f6a4c50b692f6230d6e0e3e3b7099 Mon Sep 17 00:00:00 2001
> From: David Thompson <davet@gnu.org>
> Date: Mon, 8 Jun 2015 08:59:00 -0400
> Subject: [PATCH] gnu: system: Add Linux container module.
>
> * gnu/system/linux-container.scm: New file.
> * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
> * gnu/system.scm: Export 'operating-system-etc-directory',
>   'operating-system-boot-script', 'operating-system-locale-directory', and
>   'file-union'.
>   (operating-system-boot-script): Add #:container? keyword argument.
>   (operating-system-activation-script): Add #:container?  keyword argument.
>   Don't call 'activate-firmware' or 'activate-ptrace-attach' when activating a
>   container.

LGTM!

Ludo'.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 14/15] scripts: environment: Add --container option.
  2015-07-09 13:16     ` Thompson, David
@ 2015-07-10 18:03       ` Ludovic Courtès
  0 siblings, 0 replies; 65+ messages in thread
From: Ludovic Courtès @ 2015-07-10 18:03 UTC (permalink / raw)
  To: Thompson, David; +Cc: guix-devel, David Thompson

"Thompson, David" <dthompson2@worcester.edu> skribis:

> On Tue, Jul 7, 2015 at 10:35 AM, Ludovic Courtès <ludo@gnu.org> wrote:

>> Since this works without root privileges, what about adding a test in
>> tests/guix-environment.sh?
>>
>> Basically something similar to one of the existing tests, but
>> additionally checking from within the container that ‘id -u’ returns 0,
>> that ‘$$’ is 2, and that files outside of $PWD are not in the container.
>
> For some reason that I haven't figured out, the existing tests do not
> pass on my machine when I run:
>
>     make check TESTS=tests/guix-environment.sh
>
> I'm finding it difficult to debug our tests because the test runner
> eats backtraces and other useful info.

Could you post tests/guix-environment.log?  Normally it contains both
stdout and stderr, as well as all the shell lines that were executed.

>> Which reminds me: In a separate commit, it Would Be Nice to document our
>> minimal kernel requirements for the container functionality.  Could you
>> look into that?
>
> AFAIK the recommended minimal kernel version that folks should be
> using for this stuff is 3.13, and the kernel needs to be configured
> with that DEVPTS_MULTIPLE_INSTANCES flag.  Where would you put this
> information?

The DEVPTS_MULTIPLE_INSTANCES thing should probably go in “Setting Up
the Daemon.”

The rest could maybe go to a “Container Support” section under
“Installation” that would be referenced from “Requirements” (where
optional dependencies are listed)?  Any better idea?

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 05/15] build: syscalls: Add clone syscall wrapper.
  2015-07-08  0:28     ` Thompson, David
@ 2015-07-11 10:18       ` Ludovic Courtès
  0 siblings, 0 replies; 65+ messages in thread
From: Ludovic Courtès @ 2015-07-11 10:18 UTC (permalink / raw)
  To: Thompson, David; +Cc: guix-devel, David Thompson

There’s something fishy when running the tests.  If you comment out the
“setns” and “pivot-root” tests, you’ll see that syscalls.log reads this:

--8<---------------cut here---------------start------------->8---
%%%% Starting test syscalls
Group begin: syscalls
Test begin:
  test-name: "mount, ENOENT"
  source-file: "tests/syscalls.scm"
  source-line: 34
  source-form: (test-equal "mount, ENOENT" ENOENT (catch (quote system-error) (lambda () (mount "/dev/null" "/does-not-exist" "ext2") #f) (compose system-error-errno list)))

[...]

Test begin:
  test-name: "clone"
  source-file: "tests/syscalls.scm"
  source-line: 86
  source-form: (test-assert "clone" (match (clone (logior CLONE_NEWUSER SIGCHLD)) (0 (primitive-exit 42)) (pid (and (not (equal? (readlink (user-namespace pid)) (readlink (user-namespace (getpid))))) (match (waitpid pid) ((_ . status) (= 42 (status:exit-val status))))))))
%%%% Starting test syscalls
Group begin: syscalls
Test begin:
  test-name: "mount, ENOENT"
  source-file: "tests/syscalls.scm"
  source-line: 34
  source-form: (test-equal "mount, ENOENT" ENOENT (catch (quote system-error) (lambda () (mount "/dev/null" "/does-not-exist" "ext2") #f) (compose system-error-errno list)))

[...]

Group end: syscalls
# of expected passes      14
--8<---------------cut here---------------end--------------->8---

Notice the second “Starting test syscalls” in the middle of the “clone”
test.

So it looks as though the child process started execution from the
beginning of the file, yet somehow finished as expected (there’s only
one occurrence of “Group end”.)  Ideas?


Another issue is the return value of ‘getpid’ in the child process,
which is the PID of the parent process as I reported earlier.  This
issue is actually documented in clone(2):

   Versions of the GNU C library that include the NPTL threading library
   contain a wrapper function for getpid(2) that performs caching of
   PIDs.  This caching relies on support in the glibc wrapper for
   clone(), but as currently implemented, the cache may not be up to
   date in some circumstances.

I wonder if there are other parts of libc state that may be broken after
a raw ‘clone’.  This may be fine if we call ‘exec’ soon after ‘clone’,
but otherwise could be problematic–e.g., for ‘call-with-container’.
Perhaps we’ll have to revisit the syscall vs. wrapper choice?

Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 14/15] scripts: environment: Add --container option.
  2015-07-07 14:35   ` Ludovic Courtès
  2015-07-09 13:16     ` Thompson, David
@ 2015-09-05 23:45     ` Thompson, David
  2015-09-11 12:39       ` Ludovic Courtès
  1 sibling, 1 reply; 65+ messages in thread
From: Thompson, David @ 2015-09-05 23:45 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

[-- Attachment #1: Type: text/plain, Size: 2445 bytes --]

On Tue, Jul 7, 2015 at 10:35 AM, Ludovic Courtès <ludo@gnu.org> wrote:
> David Thompson <dthompson2@worcester.edu> skribis:
>
>> * guix/scripts/enviroment.scm (show-help): Show help for new option.
>>   (%options): Add --container option.
>>   (launch-environment, launch-environment/container): New procedures.
>>   (guix-environment): Spawn new process in a container when requested.
>> * doc/guix.texi (Invoking guix environment): Document it.
>
> [...]
>
>> --- a/doc/guix.texi
>> +++ b/doc/guix.texi
>> @@ -4191,6 +4191,15 @@ NumPy:
>>  guix environment --ad-hoc python2-numpy python-2.7 -E python
>>  @end example
>>
>> +Sometimes it is desirable to isolate the environment as much as
>> +possible, for maximal purity and reproducibility.
>
> + “In particular, when using Guix on a host distro that is not GuixSD,
>   it is desirable to prevent access to @file{/usr/bin} and other
>   system-wide resources from the development environment.”
>
>> +following command spawns a Guile REPL in a ``container'' where only the
>> +store and the current working directory are mounted:
>
> @cindex container
>
>> +@item --container
>> +@itemx -C
>> +Run command within an isolated container.  The current working directory
>
> @var{command}
>
> Since this works without root privileges, what about adding a test in
> tests/guix-environment.sh?
>
> Basically something similar to one of the existing tests, but
> additionally checking from within the container that ‘id -u’ returns 0,
> that ‘$$’ is 2, and that files outside of $PWD are not in the container.

Still need to do this.

> Which reminds me: In a separate commit, it Would Be Nice to document our
> minimal kernel requirements for the container functionality.  Could you
> look into that?

Still need to do this, but...

I have a shiny new patch that adds --network, --share, and --expose
options.  Also, rather than bind-mounting the entire store, I figured
out how to bind-mount only the union of the closures of the inputs
like build daemon containers.  And finally, the original patch didn't
setup /bin/sh, which is of course terrible and broke tons of things so
I've fixed that, too.

Now I can do things like build Guix from source inside a container, or
better replicate the build daemon's environment when debugging with
failed builds.  I hope that soon everyone will be able to enjoy this.
:)

- Dave

[-- Attachment #2: 0001-scripts-environment-Add-container-option.patch --]
[-- Type: text/x-diff, Size: 19214 bytes --]

From 8e2d0fca75feeaacaf6a401a3c13d614f9c3720b Mon Sep 17 00:00:00 2001
From: David Thompson <davet@gnu.org>
Date: Fri, 19 Jun 2015 08:57:44 -0400
Subject: [PATCH] scripts: environment: Add --container option.

* guix/scripts/system.scm (specification->file-system-mapping): Move from
  here...
* guix/ui.scm (specification->file-system-mapping): ... to here.
* guix/scripts/enviroment.scm (show-help): Show help for new options.
  (%options): Add --container --network, --expose, and --share options.
  (launch-environment, launch-environment/container, requisites*,
  inputs->requisites): New procedures.
  (guix-environment): Spawn new process in a container when requested.
* doc/guix.texi (Invoking guix environment): Document it.
---
 doc/guix.texi                |  56 ++++++++++++
 guix/scripts/environment.scm | 206 ++++++++++++++++++++++++++++++++++++-------
 guix/scripts/system.scm      |  13 ---
 guix/ui.scm                  |  15 ++++
 4 files changed, 246 insertions(+), 44 deletions(-)

diff --git a/doc/guix.texi b/doc/guix.texi
index f943540..676c07c 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -4508,6 +4508,18 @@ NumPy:
 guix environment --ad-hoc python2-numpy python-2.7 -E python
 @end example
 
+Sometimes it is desirable to isolate the environment as much as
+possible, for maximal purity and reproducibility.  In particular, when
+using Guix on a host distro that is not GuixSD, it is desirable to
+prevent access to @file{/usr/bin} and other system-wide resources from
+the development environment.  For example, the following command spawns
+a Guile REPL in a ``container'' where only the store and the current
+working directory are mounted:
+
+@example
+guix environment --ad-hoc --container guile --exec=guile
+@end example
+
 The available options are summarized below.
 
 @table @code
@@ -4573,6 +4585,49 @@ environment.
 @item --system=@var{system}
 @itemx -s @var{system}
 Attempt to build for @var{system}---e.g., @code{i686-linux}.
+
+@item --container
+@itemx -C
+@cindex container
+Run @var{command} within an isolated container.  The current working
+directory outside the container is mapped to @file{/env} inside the
+container.  Additionally, the spawned process runs as the current user
+outside the container, but has root privileges in the context of the
+container.
+
+@item --network
+@itemx -N
+For containers, share the network namespace with the host system.
+Containers created without this flag only have access to the loopback
+device.
+
+@item --expose=@var{source}[=@var{target}]
+For containers, expose the file system @var{source} from the host system
+as the read-only file system @var{target} within the container.  If
+@var{target} is not specified, @var{source} is used as the target mount
+point in the container.
+
+The example below spawns a Guile REPL in a container in which the user's
+home directory is accessible read-only via the @file{/exchange}
+directory:
+
+@example
+guix environment --container --expose=$HOME=/exchange guile -E guile
+@end example
+
+@item --share
+For containers, share the file system @var{source} from the host system
+as the writable file system @var{target} within the container.  If
+@var{target} is not specified, @var{source} is used as the target mount
+point in the container.
+
+The example below spawns a Guile REPL in a container in which the user's
+home directory is accessible for both reading and writing via the
+@file{/exchange} directory:
+
+@example
+guix environment --container --share=$HOME=/exchange guile -E guile
+@end example
 @end table
 
 It also supports all of the common build options that @command{guix
@@ -6749,6 +6804,7 @@ This command also installs GRUB on the device specified in
 @item vm
 @cindex virtual machine
 @cindex VM
+@anchor{guix system vm}
 Build a virtual machine that contain the operating system declared in
 @var{file}, and return a script to run that virtual machine (VM).
 Arguments given to the script are passed as is to QEMU.
diff --git a/guix/scripts/environment.scm b/guix/scripts/environment.scm
index ecdbc7a..7f17cb4 100644
--- a/guix/scripts/environment.scm
+++ b/guix/scripts/environment.scm
@@ -25,10 +25,15 @@
   #:use-module (guix profiles)
   #:use-module (guix search-paths)
   #:use-module (guix utils)
+  #:use-module (guix build utils)
   #:use-module (guix monads)
   #:use-module ((guix gexp) #:select (lower-inputs))
   #:use-module (guix scripts build)
+  #:use-module (gnu build linux-container)
+  #:use-module (gnu system linux-container)
+  #:use-module (gnu system file-systems)
   #:use-module (gnu packages)
+  #:use-module (gnu packages bash)
   #:use-module (ice-9 format)
   #:use-module (ice-9 match)
   #:use-module (srfi srfi-1)
@@ -122,6 +127,16 @@ shell command in that environment.\n"))
       --search-paths     display needed environment variable definitions"))
   (display (_ "
   -s, --system=SYSTEM    attempt to build for SYSTEM--e.g., \"i686-linux\""))
+  (display (_ "
+  -C, --container        run command within an isolated container"))
+  (display (_ "
+  -N, --network          allow containers to access the network"))
+  (display (_ "
+      --share=SPEC       for containers, share writable host file system
+                         according to SPEC"))
+  (display (_ "
+      --expose=SPEC      for containers, expose read-only host file system
+                         according to SPEC"))
   (newline)
   (show-build-options-help)
   (newline)
@@ -174,6 +189,22 @@ shell command in that environment.\n"))
                  (lambda (opt name arg result)
                    (alist-cons 'system arg
                                (alist-delete 'system result eq?))))
+         (option '(#\C "container") #f #f
+                 (lambda (opt name arg result)
+                   (alist-cons 'container? #t result)))
+         (option '(#\N "network") #f #f
+                 (lambda (opt name arg result)
+                   (alist-cons 'network? #t result)))
+         (option '("share") #t #f
+                 (lambda (opt name arg result)
+                   (alist-cons 'file-system-mapping
+                               (specification->file-system-mapping arg #t)
+                               result)))
+         (option '("expose") #t #f
+                 (lambda (opt name arg result)
+                   (alist-cons 'file-system-mapping
+                               (specification->file-system-mapping arg #f)
+                               result)))
          %standard-build-options))
 
 (define (pick-all alist key)
@@ -229,56 +260,169 @@ OUTPUT) tuples, using the build options in OPTS."
                (built-derivations derivations)
                (return derivations))))))))
 
+(define requisites* (store-lift requisites))
+
+(define (inputs->requisites inputs)
+  "Convert INPUTS, a list of derivations, into a set of requisite store items i.e.
+the union closure of all the inputs."
+  (define (input->requisites inputs)
+    (requisites*
+     (match inputs
+       ((drv output)
+        (derivation->output-path drv output))
+       ((drv)
+        (derivation->output-path drv)))))
+
+  (mlet %store-monad ((reqs (sequence %store-monad
+                                      (map input->requisites inputs))))
+    (return (delete-duplicates (concatenate reqs)))))
+
+(define (launch-environment command inputs paths pure?)
+  "Run COMMAND in a new environment containing INPUTS, using the native search
+paths defined by the list PATHS.  When PURE?, pre-existing environment
+variables are cleared before setting the new ones."
+  (create-environment inputs paths pure?)
+  (system command))
+
+(define* (launch-environment/container #:key command bash requisites
+                                       user-mappings inputs paths network?)
+  "Run COMMAND within a Linux container.  The environment features INPUTS, a
+list of derivations to be shared from the host system.  Environment variables
+are set according to PATHS, a list of native search paths.  The global shell
+is BASH, a derivation of Bash.  When NETWORK?, access to the host system
+network is permitted.  USER-MAPPINGS, a list of file system mappings, contains
+the user-specified host file systems to mount inside the container."
+  (mlet %store-monad ((reqs (inputs->requisites `((,bash "out") ,@inputs))))
+    (return
+     (let* ((cwd (getcwd))
+            ;; Bind-mount all requisite store items, user-specified mappings,
+            ;; /bin/sh, the current working directory, and possibly networking
+            ;; configuration files within the container.
+            (mappings
+             (append user-mappings
+                     ;; Current working directory.
+                     (list (file-system-mapping
+                            (source cwd)
+                            (target cwd)
+                            (writable? #t)))
+                     ;; When in Rome, do as Nix build.cc does: Automagically
+                     ;; map common network configuration files.
+                     (if network?
+                         (filter-map (lambda (file)
+                                       (and (file-exists? file)
+                                            (file-system-mapping
+                                             (source file)
+                                             (target file)
+                                             (writable? #f))))
+                                     '("/etc/resolv.conf"
+                                       "/etc/nsswitch.conf"
+                                       "/etc/services"
+                                       "/etc/hosts"))
+                         '())
+                     ;; Mappings for the union closure of all inputs.
+                     (map (lambda (dir)
+                            (file-system-mapping
+                             (source dir)
+                             (target dir)
+                             (writable? #f)))
+                          reqs)))
+            (file-systems (append %container-file-systems
+                                  (map mapping->file-system mappings)))
+            (status
+             (call-with-container (map file-system->spec file-systems)
+               (lambda ()
+                 ;; Setup global shell.
+                 (mkdir-p "/bin")
+                 (symlink (string-append (derivation->output-path bash)
+                                         "/bin/sh")
+                          "/bin/sh")
+
+                 ;; Setup directory for temporary files.
+                 (mkdir-p "/tmp")
+                 (for-each (lambda (var)
+                             (setenv var "/tmp"))
+                           ;; The same variables as in Nix's 'build.cc'.
+                           '("TMPDIR" "TEMPDIR" "TMP" "TEMP"))
+
+                 ;; For convenience, start in the user's current working
+                 ;; directory rather than the root directory.
+                 (chdir cwd)
+
+                 ;; A container's environment is already purified, so no need to
+                 ;; request it be purified again.
+                 (launch-environment command inputs paths #f))
+               #:namespaces (if network?
+                                (delq 'net %namespaces) ; share host network
+                                %namespaces))))
+       (status:exit-val status)))))
+
 ;; Entry point.
 (define (guix-environment . args)
   (define (handle-argument arg result)
     (alist-cons 'package arg result))
 
   (with-error-handling
-    (let* ((opts     (parse-command-line args %options (list %default-options)
+    (let* ((opts       (parse-command-line args %options (list %default-options)
                                          #:argument-handler handle-argument))
-           (pure?    (assoc-ref opts 'pure))
-           (ad-hoc?  (assoc-ref opts 'ad-hoc?))
-           (command  (assoc-ref opts 'exec))
-           (packages (pick-all (options/resolve-packages opts) 'package))
-           (inputs   (if ad-hoc?
-                         (append-map (match-lambda
-                                       ((package output)
-                                        (package+propagated-inputs package
-                                                                   output)))
-                                     packages)
-                         (append-map (compose bag-transitive-inputs
-                                              package->bag
-                                              first)
-                                     packages)))
-           (paths    (delete-duplicates
-                      (cons $PATH
-                            (append-map (match-lambda
-                                          ((label (? package? p) _ ...)
-                                           (package-native-search-paths p))
-                                          (_
-                                           '()))
-                                        inputs))
-                      eq?)))
+           (pure?      (assoc-ref opts 'pure))
+           (container? (assoc-ref opts 'container?))
+           (network?   (assoc-ref opts 'network?))
+           (ad-hoc?    (assoc-ref opts 'ad-hoc?))
+           (command    (assoc-ref opts 'exec))
+           (packages   (pick-all (options/resolve-packages opts) 'package))
+           (mappings   (pick-all opts 'file-system-mapping))
+           (inputs     (if ad-hoc?
+                           (append-map (match-lambda
+                                        ((package output)
+                                         (package+propagated-inputs package
+                                                                    output)))
+                                       packages)
+                           (append-map (compose bag-transitive-inputs
+                                                package->bag
+                                                first)
+                                       packages)))
+           (paths      (delete-duplicates
+                        (cons $PATH
+                              (append-map (match-lambda
+                                           ((label (? package? p) _ ...)
+                                            (package-native-search-paths p))
+                                           (_
+                                            '()))
+                                          inputs))
+                        eq?)))
       (with-store store
         (run-with-store store
-          (mlet %store-monad ((inputs (lower-inputs
-                                       (map (match-lambda
+          (mlet* %store-monad ((inputs (lower-inputs
+                                        (map (match-lambda
                                               ((label item)
                                                (list item))
                                               ((label item output)
                                                (list item output)))
-                                            inputs)
-                                       #:system (assoc-ref opts 'system))))
+                                             inputs)
+                                        #:system (assoc-ref opts 'system)))
+                               ;; Containers need a Bourne shell at /bin/sh.
+                               (bash (if container?
+                                         (package->derivation bash)
+                                         (return #f)))
+                               (all-inputs -> (if container?
+                                                  `((,bash "out") ,@inputs)
+                                                  inputs)))
             (mbegin %store-monad
               ;; First build INPUTS.  This is necessary even for
               ;; --search-paths.
-              (build-inputs inputs opts)
+              (build-inputs all-inputs opts)
               (cond ((assoc-ref opts 'dry-run?)
                      (return #t))
                     ((assoc-ref opts 'search-paths)
                      (show-search-paths inputs paths pure?)
                      (return #t))
+                    (container?
+                     (launch-environment/container #:command command
+                                                   #:bash bash
+                                                   #:user-mappings mappings
+                                                   #:inputs inputs
+                                                   #:paths paths
+                                                   #:network? network?))
                     (else
-                     (create-environment inputs paths pure?)
-                     (return (exit (status:exit-val (system command)))))))))))))
+                     (return
+                      (launch-environment command inputs paths pure?)))))))))))
diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm
index 45f5982..4245925 100644
--- a/guix/scripts/system.scm
+++ b/guix/scripts/system.scm
@@ -415,19 +415,6 @@ Build the operating system declared in FILE according to ACTION.\n"))
   (newline)
   (show-bug-report-information))
 
-(define (specification->file-system-mapping spec writable?)
-  "Read the SPEC and return the corresponding <file-system-mapping>."
-  (let ((index (string-index spec #\=)))
-    (if index
-        (file-system-mapping
-         (source (substring spec 0 index))
-         (target (substring spec (+ 1 index)))
-         (writable? writable?))
-        (file-system-mapping
-         (source spec)
-         (target spec)
-         (writable? writable?)))))
-
 (define %options
   ;; Specifications of the command-line options.
   (cons* (option '(#\h "help") #f #f
diff --git a/guix/ui.scm b/guix/ui.scm
index 8de8e3c..43afd8f 100644
--- a/guix/ui.scm
+++ b/guix/ui.scm
@@ -31,6 +31,7 @@
   #:use-module (guix serialization)
   #:use-module ((guix build utils) #:select (mkdir-p))
   #:use-module ((guix licenses) #:select (license? license-name))
+  #:use-module (gnu system file-systems)
   #:use-module (srfi srfi-1)
   #:use-module (srfi srfi-11)
   #:use-module (srfi srfi-19)
@@ -72,6 +73,7 @@
             string->recutils
             package->recutils
             package-specification->name+version+output
+            specification->file-system-mapping
             string->generations
             string->duration
             args-fold*
@@ -922,6 +924,19 @@ optionally contain a version number and an output name, as in these examples:
                  (package-name->name+version name)))
     (values name version sub-drv)))
 
+(define (specification->file-system-mapping spec writable?)
+  "Read the SPEC and return the corresponding <file-system-mapping>."
+  (let ((index (string-index spec #\=)))
+    (if index
+        (file-system-mapping
+         (source (substring spec 0 index))
+         (target (substring spec (+ 1 index)))
+         (writable? writable?))
+        (file-system-mapping
+         (source spec)
+         (target spec)
+         (writable? writable?)))))
+
 \f
 ;;;
 ;;; Command-line option processing.
-- 
2.5.0


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* Re: [PATCH 14/15] scripts: environment: Add --container option.
  2015-09-05 23:45     ` Thompson, David
@ 2015-09-11 12:39       ` Ludovic Courtès
  2015-10-10 21:11         ` Thompson, David
  0 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-09-11 12:39 UTC (permalink / raw)
  To: Thompson, David; +Cc: guix-devel, David Thompson

"Thompson, David" <dthompson2@worcester.edu> skribis:

> On Tue, Jul 7, 2015 at 10:35 AM, Ludovic Courtès <ludo@gnu.org> wrote:

[...]

> I have a shiny new patch that adds --network, --share, and --expose
> options.

Neat!

> Also, rather than bind-mounting the entire store, I figured out how to
> bind-mount only the union of the closures of the inputs like build
> daemon containers.

How does it perform compared to doing a single bind mount?  It is
noticeably slower or OK?

> And finally, the original patch didn't setup /bin/sh, which is of
> course terrible and broke tons of things so I've fixed that, too.

Right.  :-)

> Now I can do things like build Guix from source inside a container, or
> better replicate the build daemon's environment when debugging with
> failed builds.  I hope that soon everyone will be able to enjoy this.
> :)

Sounds cool!

> From 8e2d0fca75feeaacaf6a401a3c13d614f9c3720b Mon Sep 17 00:00:00 2001
> From: David Thompson <davet@gnu.org>
> Date: Fri, 19 Jun 2015 08:57:44 -0400
> Subject: [PATCH] scripts: environment: Add --container option.
>
> * guix/scripts/system.scm (specification->file-system-mapping): Move from
>   here...
> * guix/ui.scm (specification->file-system-mapping): ... to here.
> * guix/scripts/enviroment.scm (show-help): Show help for new options.
>   (%options): Add --container --network, --expose, and --share options.
>   (launch-environment, launch-environment/container, requisites*,
>   inputs->requisites): New procedures.
>   (guix-environment): Spawn new process in a container when requested.
> * doc/guix.texi (Invoking guix environment): Document it.

[...]

> +The example below spawns a Guile REPL in a container in which the user's
> +home directory is accessible read-only via the @file{/exchange}
> +directory:
> +
> +@example
> +guix environment --container --expose=$HOME=/exchange guile -E guile
> +@end example

\o/

> +  -C, --container        run command within an isolated container"))

s/within/in/ ?  (You know better than me...)


> +(define (inputs->requisites inputs)
> +  "Convert INPUTS, a list of derivations, into a set of requisite store items i.e.

s/derivations/input tuples/ since it’s a list of (LABEL DRV) or
(LABEL DRV OUTPUT).

> +                     ;; When in Rome, do as Nix build.cc does: Automagically
> +                     ;; map common network configuration files.
> +                     (if network?
> +                         (filter-map (lambda (file)
> +                                       (and (file-exists? file)
> +                                            (file-system-mapping
> +                                             (source file)
> +                                             (target file)
> +                                             (writable? #f))))
> +                                     '("/etc/resolv.conf"
> +                                       "/etc/nsswitch.conf"
> +                                       "/etc/services"
> +                                       "/etc/hosts"))

Could you make this list a global variable for clarity?


[...]

> +(define (specification->file-system-mapping spec writable?)
> +  "Read the SPEC and return the corresponding <file-system-mapping>."

Now that this is public, could you add an example of what SPEC looks
like in the docstring?

Last, could you add (maybe in a separate patch?)
tests/guix-environment-container.sh mimicking tests/guix-environment.sh?
It only needs to use -E to run a tiny script that checks that we really
get an environment with only the right file system mappings?

Thanks!

Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 14/15] scripts: environment: Add --container option.
  2015-09-11 12:39       ` Ludovic Courtès
@ 2015-10-10 21:11         ` Thompson, David
  2015-10-11 19:34           ` Ludovic Courtès
  0 siblings, 1 reply; 65+ messages in thread
From: Thompson, David @ 2015-10-10 21:11 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

[-- Attachment #1: Type: text/plain, Size: 859 bytes --]

Hi Ludo,

On Fri, Sep 11, 2015 at 8:39 AM, Ludovic Courtès <ludo@gnu.org> wrote:

> tests/guix-environment-container.sh mimicking tests/guix-environment.sh?
> It only needs to use -E to run a tiny script that checks that we really
> get an environment with only the right file system mappings?

I'm having a hard time getting tests to pass.  I can run this
successfully outside the test environment:

    guix environment --container --ad-hoc --bootstrap guile-bootstrap
-- guile -c '(exit 42)'

But it fails in the test environment when I run:

    make check TESTS=tests/guix-environment.sh

Attached is the log with some 'strace -f' output for that particular
bad command.  The offending execve syscall throws "ENOEXEC (Exec
format error)" which I do not understand.  Any thoughts?  I'm out of
ideas.

Thanks in advance,

- Dave

[-- Attachment #2: guix-environment.log --]
[-- Type: application/octet-stream, Size: 1004111 bytes --]

+ set -e
+ guix environment --version
guix environment (GNU Guix) 0.9.0
Copyright (C) 2015 the Guix authors
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
+ tmpdir=t-guix-environment-32604
+ trap 'rm -r "$tmpdir"' EXIT
+ mkdir t-guix-environment-32604
+ strace -f guix environment --container --ad-hoc --bootstrap guile-bootstrap -- guile -c '(exit 42)'
execve("/home/dave/Code/guix/scripts/guix", ["guix", "environment", "--container", "--ad-hoc", "--bootstrap", "guile-bootstrap", "--", "guile", "-c", "(exit 42)"], [/* 87 vars */]) = 0
brk(0)                                  = 0x1327000
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f7b17000
access("/etc/ld.so.preload", R_OK)      = -1 ENOENT (No such file or directory)
open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/tls/x86_64/libguile-2.0.so.22", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/tls/x86_64", 0x7ffe14eb21e0) = -1 ENOENT (No such file or directory)
open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/tls/libguile-2.0.so.22", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/tls", 0x7ffe14eb21e0) = -1 ENOENT (No such file or directory)
open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/x86_64/libguile-2.0.so.22", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/x86_64", 0x7ffe14eb21e0) = -1 ENOENT (No such file or directory)
open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/libguile-2.0.so.22", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200\233\4\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=2253744, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f7b16000
mmap(NULL, 3731328, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f08f756a000
mprotect(0x7f08f76bd000, 2093056, PROT_NONE) = 0
mmap(0x7f08f78bc000, 196608, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x152000) = 0x7f08f78bc000
mmap(0x7f08f78ec000, 53120, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f08f78ec000
close(3)                                = 0
open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/libgc.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/bpicp28mf55bhs9ij5z27pdrq9hllwrj-libgc-7.4.2/lib/tls/x86_64/libgc.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/bpicp28mf55bhs9ij5z27pdrq9hllwrj-libgc-7.4.2/lib/tls/x86_64", 0x7ffe14eb21b0) = -1 ENOENT (No such file or directory)
open("/gnu/store/bpicp28mf55bhs9ij5z27pdrq9hllwrj-libgc-7.4.2/lib/tls/libgc.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/bpicp28mf55bhs9ij5z27pdrq9hllwrj-libgc-7.4.2/lib/tls", 0x7ffe14eb21b0) = -1 ENOENT (No such file or directory)
open("/gnu/store/bpicp28mf55bhs9ij5z27pdrq9hllwrj-libgc-7.4.2/lib/x86_64/libgc.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/bpicp28mf55bhs9ij5z27pdrq9hllwrj-libgc-7.4.2/lib/x86_64", 0x7ffe14eb21b0) = -1 ENOENT (No such file or directory)
open("/gnu/store/bpicp28mf55bhs9ij5z27pdrq9hllwrj-libgc-7.4.2/lib/libgc.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\336\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=223896, ...}) = 0
mmap(NULL, 2555232, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f08f72fa000
mprotect(0x7f08f7326000, 2097152, PROT_NONE) = 0
mmap(0x7f08f7526000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2c000) = 0x7f08f7526000
mmap(0x7f08f7528000, 269664, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f08f7528000
close(3)                                = 0
open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/bpicp28mf55bhs9ij5z27pdrq9hllwrj-libgc-7.4.2/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/wc18f815bjqz8haz2mf4ls74wbpp2vhm-libffi-3.1/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/wc18f815bjqz8haz2mf4ls74wbpp2vhm-libffi-3.1/lib/tls/x86_64", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
open("/gnu/store/wc18f815bjqz8haz2mf4ls74wbpp2vhm-libffi-3.1/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/wc18f815bjqz8haz2mf4ls74wbpp2vhm-libffi-3.1/lib/tls", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
open("/gnu/store/wc18f815bjqz8haz2mf4ls74wbpp2vhm-libffi-3.1/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/wc18f815bjqz8haz2mf4ls74wbpp2vhm-libffi-3.1/lib/x86_64", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
open("/gnu/store/wc18f815bjqz8haz2mf4ls74wbpp2vhm-libffi-3.1/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/wc18f815bjqz8haz2mf4ls74wbpp2vhm-libffi-3.1/lib", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
open("/gnu/store/kkrml4d8yr30rz7agrg353pzmff29gwv-libunistring-0.9.6/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/kkrml4d8yr30rz7agrg353pzmff29gwv-libunistring-0.9.6/lib/tls/x86_64", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkrml4d8yr30rz7agrg353pzmff29gwv-libunistring-0.9.6/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/kkrml4d8yr30rz7agrg353pzmff29gwv-libunistring-0.9.6/lib/tls", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkrml4d8yr30rz7agrg353pzmff29gwv-libunistring-0.9.6/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/kkrml4d8yr30rz7agrg353pzmff29gwv-libunistring-0.9.6/lib/x86_64", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkrml4d8yr30rz7agrg353pzmff29gwv-libunistring-0.9.6/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/kkrml4d8yr30rz7agrg353pzmff29gwv-libunistring-0.9.6/lib", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
open("/gnu/store/kkbiklgd5yfgakr5dagc2ma4drzxkb6l-gmp-6.0.0a/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/kkbiklgd5yfgakr5dagc2ma4drzxkb6l-gmp-6.0.0a/lib/tls/x86_64", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkbiklgd5yfgakr5dagc2ma4drzxkb6l-gmp-6.0.0a/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/kkbiklgd5yfgakr5dagc2ma4drzxkb6l-gmp-6.0.0a/lib/tls", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkbiklgd5yfgakr5dagc2ma4drzxkb6l-gmp-6.0.0a/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/kkbiklgd5yfgakr5dagc2ma4drzxkb6l-gmp-6.0.0a/lib/x86_64", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkbiklgd5yfgakr5dagc2ma4drzxkb6l-gmp-6.0.0a/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/kkbiklgd5yfgakr5dagc2ma4drzxkb6l-gmp-6.0.0a/lib", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
open("/gnu/store/va440drjcpw23sjpb1sgf7gchfq0jm92-libltdl-2.4.6/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/va440drjcpw23sjpb1sgf7gchfq0jm92-libltdl-2.4.6/lib/tls/x86_64", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
open("/gnu/store/va440drjcpw23sjpb1sgf7gchfq0jm92-libltdl-2.4.6/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/va440drjcpw23sjpb1sgf7gchfq0jm92-libltdl-2.4.6/lib/tls", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
open("/gnu/store/va440drjcpw23sjpb1sgf7gchfq0jm92-libltdl-2.4.6/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/va440drjcpw23sjpb1sgf7gchfq0jm92-libltdl-2.4.6/lib/x86_64", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
open("/gnu/store/va440drjcpw23sjpb1sgf7gchfq0jm92-libltdl-2.4.6/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/va440drjcpw23sjpb1sgf7gchfq0jm92-libltdl-2.4.6/lib", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
open("/gnu/store/x2vcwnrwhydd6knmlqsnan0jg13i96zd-glibc-2.22/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/x2vcwnrwhydd6knmlqsnan0jg13i96zd-glibc-2.22/lib/tls/x86_64", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
open("/gnu/store/x2vcwnrwhydd6knmlqsnan0jg13i96zd-glibc-2.22/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/x2vcwnrwhydd6knmlqsnan0jg13i96zd-glibc-2.22/lib/tls", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
open("/gnu/store/x2vcwnrwhydd6knmlqsnan0jg13i96zd-glibc-2.22/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/x2vcwnrwhydd6knmlqsnan0jg13i96zd-glibc-2.22/lib/x86_64", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
open("/gnu/store/x2vcwnrwhydd6knmlqsnan0jg13i96zd-glibc-2.22/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0a\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=138880, ...}) = 0
mmap(NULL, 2213072, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f08f70dd000
mprotect(0x7f08f70f5000, 2093056, PROT_NONE) = 0
mmap(0x7f08f72f4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f08f72f4000
mmap(0x7f08f72f6000, 13520, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f08f72f6000
close(3)                                = 0
open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/libffi.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/bpicp28mf55bhs9ij5z27pdrq9hllwrj-libgc-7.4.2/lib/libffi.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/wc18f815bjqz8haz2mf4ls74wbpp2vhm-libffi-3.1/lib/libffi.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\31\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=42704, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f7b15000
mmap(NULL, 2133672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f08f6ed4000
mprotect(0x7f08f6edd000, 2093056, PROT_NONE) = 0
mmap(0x7f08f70dc000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7f08f70dc000
close(3)                                = 0
open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/libunistring.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/bpicp28mf55bhs9ij5z27pdrq9hllwrj-libgc-7.4.2/lib/libunistring.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/wc18f815bjqz8haz2mf4ls74wbpp2vhm-libffi-3.1/lib/libunistring.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkrml4d8yr30rz7agrg353pzmff29gwv-libunistring-0.9.6/lib/libunistring.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\17\1\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=1548400, ...}) = 0
mmap(NULL, 3597320, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f08f6b65000
mprotect(0x7f08f6ccf000, 2097152, PROT_NONE) = 0
mmap(0x7f08f6ecf000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16a000) = 0x7f08f6ecf000
mmap(0x7f08f6ed3000, 1032, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f08f6ed3000
close(3)                                = 0
open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/libgmp.so.10", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/bpicp28mf55bhs9ij5z27pdrq9hllwrj-libgc-7.4.2/lib/libgmp.so.10", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/wc18f815bjqz8haz2mf4ls74wbpp2vhm-libffi-3.1/lib/libgmp.so.10", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkrml4d8yr30rz7agrg353pzmff29gwv-libunistring-0.9.6/lib/libgmp.so.10", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkbiklgd5yfgakr5dagc2ma4drzxkb6l-gmp-6.0.0a/lib/libgmp.so.10", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\367\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=627520, ...}) = 0
mmap(NULL, 2680800, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f08f68d6000
mprotect(0x7f08f6963000, 2097152, PROT_NONE) = 0
mmap(0x7f08f6b63000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8d000) = 0x7f08f6b63000
close(3)                                = 0
open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/libltdl.so.7", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/bpicp28mf55bhs9ij5z27pdrq9hllwrj-libgc-7.4.2/lib/libltdl.so.7", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/wc18f815bjqz8haz2mf4ls74wbpp2vhm-libffi-3.1/lib/libltdl.so.7", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkrml4d8yr30rz7agrg353pzmff29gwv-libunistring-0.9.6/lib/libltdl.so.7", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkbiklgd5yfgakr5dagc2ma4drzxkb6l-gmp-6.0.0a/lib/libltdl.so.7", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/va440drjcpw23sjpb1sgf7gchfq0jm92-libltdl-2.4.6/lib/libltdl.so.7", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@%\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=46424, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f7b14000
mmap(NULL, 2132504, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f08f66cd000
mprotect(0x7f08f66d6000, 2093056, PROT_NONE) = 0
mmap(0x7f08f68d5000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x8000) = 0x7f08f68d5000
close(3)                                = 0
open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/bpicp28mf55bhs9ij5z27pdrq9hllwrj-libgc-7.4.2/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/wc18f815bjqz8haz2mf4ls74wbpp2vhm-libffi-3.1/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkrml4d8yr30rz7agrg353pzmff29gwv-libunistring-0.9.6/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkbiklgd5yfgakr5dagc2ma4drzxkb6l-gmp-6.0.0a/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/va440drjcpw23sjpb1sgf7gchfq0jm92-libltdl-2.4.6/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/x2vcwnrwhydd6knmlqsnan0jg13i96zd-glibc-2.22/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\16\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=18976, ...}) = 0
mmap(NULL, 2109712, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f08f64c9000
mprotect(0x7f08f64cb000, 2097152, PROT_NONE) = 0
mmap(0x7f08f66cb000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f08f66cb000
close(3)                                = 0
open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/libcrypt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/bpicp28mf55bhs9ij5z27pdrq9hllwrj-libgc-7.4.2/lib/libcrypt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/wc18f815bjqz8haz2mf4ls74wbpp2vhm-libffi-3.1/lib/libcrypt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkrml4d8yr30rz7agrg353pzmff29gwv-libunistring-0.9.6/lib/libcrypt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkbiklgd5yfgakr5dagc2ma4drzxkb6l-gmp-6.0.0a/lib/libcrypt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/va440drjcpw23sjpb1sgf7gchfq0jm92-libltdl-2.4.6/lib/libcrypt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/x2vcwnrwhydd6knmlqsnan0jg13i96zd-glibc-2.22/lib/libcrypt.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\v\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=40648, ...}) = 0
mmap(NULL, 2318880, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f08f6292000
mprotect(0x7f08f629a000, 2093056, PROT_NONE) = 0
mmap(0x7f08f6499000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f08f6499000
mmap(0x7f08f649b000, 184864, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f08f649b000
close(3)                                = 0
open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/bpicp28mf55bhs9ij5z27pdrq9hllwrj-libgc-7.4.2/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/wc18f815bjqz8haz2mf4ls74wbpp2vhm-libffi-3.1/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkrml4d8yr30rz7agrg353pzmff29gwv-libunistring-0.9.6/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkbiklgd5yfgakr5dagc2ma4drzxkb6l-gmp-6.0.0a/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/va440drjcpw23sjpb1sgf7gchfq0jm92-libltdl-2.4.6/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/x2vcwnrwhydd6knmlqsnan0jg13i96zd-glibc-2.22/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300T\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=1111104, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f7b13000
mmap(NULL, 3137880, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f08f5f93000
mprotect(0x7f08f6091000, 2093056, PROT_NONE) = 0
mmap(0x7f08f6290000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xfd000) = 0x7f08f6290000
close(3)                                = 0
open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/bpicp28mf55bhs9ij5z27pdrq9hllwrj-libgc-7.4.2/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/wc18f815bjqz8haz2mf4ls74wbpp2vhm-libffi-3.1/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkrml4d8yr30rz7agrg353pzmff29gwv-libunistring-0.9.6/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkbiklgd5yfgakr5dagc2ma4drzxkb6l-gmp-6.0.0a/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/va440drjcpw23sjpb1sgf7gchfq0jm92-libltdl-2.4.6/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/x2vcwnrwhydd6knmlqsnan0jg13i96zd-glibc-2.22/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/b1y9fgk0aqh664n8cd9djmrkcaxnzs3n-gcc-4.9.3-lib/lib/tls/x86_64/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/b1y9fgk0aqh664n8cd9djmrkcaxnzs3n-gcc-4.9.3-lib/lib/tls/x86_64", 0x7ffe14eb2000) = -1 ENOENT (No such file or directory)
open("/gnu/store/b1y9fgk0aqh664n8cd9djmrkcaxnzs3n-gcc-4.9.3-lib/lib/tls/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/b1y9fgk0aqh664n8cd9djmrkcaxnzs3n-gcc-4.9.3-lib/lib/tls", 0x7ffe14eb2000) = -1 ENOENT (No such file or directory)
open("/gnu/store/b1y9fgk0aqh664n8cd9djmrkcaxnzs3n-gcc-4.9.3-lib/lib/x86_64/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/gnu/store/b1y9fgk0aqh664n8cd9djmrkcaxnzs3n-gcc-4.9.3-lib/lib/x86_64", 0x7ffe14eb2000) = -1 ENOENT (No such file or directory)
open("/gnu/store/b1y9fgk0aqh664n8cd9djmrkcaxnzs3n-gcc-4.9.3-lib/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000*\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0444, st_size=100768, ...}) = 0
mmap(NULL, 2185888, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f08f5d7d000
mprotect(0x7f08f5d93000, 2093056, PROT_NONE) = 0
mmap(0x7f08f5f92000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7f08f5f92000
close(3)                                = 0
open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/bpicp28mf55bhs9ij5z27pdrq9hllwrj-libgc-7.4.2/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/wc18f815bjqz8haz2mf4ls74wbpp2vhm-libffi-3.1/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkrml4d8yr30rz7agrg353pzmff29gwv-libunistring-0.9.6/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/kkbiklgd5yfgakr5dagc2ma4drzxkb6l-gmp-6.0.0a/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/va440drjcpw23sjpb1sgf7gchfq0jm92-libltdl-2.4.6/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/gnu/store/x2vcwnrwhydd6knmlqsnan0jg13i96zd-glibc-2.22/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\7\2\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=1952400, ...}) = 0
mmap(NULL, 3821248, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f08f59d8000
mprotect(0x7f08f5b73000, 2097152, PROT_NONE) = 0
mmap(0x7f08f5d73000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x19b000) = 0x7f08f5d73000
mmap(0x7f08f5d79000, 16064, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f08f5d79000
close(3)                                = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f7b12000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f7b11000
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f7b0f000
arch_prctl(ARCH_SET_FS, 0x7f08f7b0f740) = 0
mprotect(0x7f08f5d73000, 16384, PROT_READ) = 0
mprotect(0x7f08f6290000, 4096, PROT_READ) = 0
mprotect(0x7f08f6499000, 4096, PROT_READ) = 0
mprotect(0x7f08f66cb000, 4096, PROT_READ) = 0
mprotect(0x7f08f72f4000, 4096, PROT_READ) = 0
mprotect(0x7f08f78bc000, 73728, PROT_READ) = 0
mprotect(0x7f08f7b19000, 4096, PROT_READ) = 0
set_tid_address(0x7f08f7b0fa10)         = 32619
set_robust_list(0x7f08f7b0fa20, 24)     = 0
rt_sigaction(SIGRTMIN, {0x7f08f70e2b90, [], SA_RESTORER|SA_SIGINFO, 0x7f08f70eddd0}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {0x7f08f70e2c20, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7f08f70eddd0}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
futex(0x7f08f78f1660, FUTEX_WAKE_PRIVATE, 2147483647) = 0
brk(0)                                  = 0x1327000
brk(0x1348000)                          = 0x1348000
open("/proc/self/maps", O_RDONLY|O_CLOEXEC) = 3
getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f7b0e000
read(3, "00400000-00402000 r-xp 00000000 "..., 1024) = 1024
read(3, "0000 08:01 4104751              "..., 1024) = 1024
read(3, "0000000 08:01 4105219           "..., 1024) = 1024
read(3, "ibc-2.22/lib/libdl-2.22.so\n7f08f"..., 1024) = 1024
read(3, "kr5dagc2ma4drzxkb6l-gmp-6.0.0a/l"..., 1024) = 1024
read(3, ".6.0.2\n7f08f70dd000-7f08f70f5000"..., 1024) = 1024
read(3, "     /gnu/store/bpicp28mf55bhs9i"..., 1024) = 1024
read(3, "r--p 00020000 08:01 4105200     "..., 1024) = 634
close(3)                                = 0
munmap(0x7f08f7b0e000, 4096)            = 0
sched_getaffinity(32619, 32, {f, 0, 0, 0}) = 32
brk(0x1358000)                          = 0x1358000
brk(0x1368000)                          = 0x1368000
brk(0x1378000)                          = 0x1378000
brk(0x1388000)                          = 0x1388000
brk(0x1398000)                          = 0x1398000
rt_sigaction(SIGPWR, {0x7f08f731c010, ~[INT QUIT ABRT BUS SEGV TERM RTMIN RT_1], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7f08f70eddd0}, NULL, 8) = 0
rt_sigaction(SIGXCPU, {0x7f08f731bdf0, ~[INT QUIT ABRT BUS SEGV TERM RTMIN RT_1], SA_RESTORER|SA_RESTART, 0x7f08f70eddd0}, NULL, 8) = 0
open("/proc/stat", O_RDONLY)            = 3
read(3, "cpu  4635559 682 788216 39041684"..., 4096) = 1453
close(3)                                = 0
mmap(NULL, 8392704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f08f51d7000
mprotect(0x7f08f51d7000, 4096, PROT_NONE) = 0
clone(child_stack=0x7f08f59d6fb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f08f59d79d0, tls=0x7f08f59d7700, child_tidptr=0x7f08f59d79d0) = 32620
Process 32620 attached
[pid 32619] mmap(NULL, 8392704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0 <unfinished ...>
[pid 32620] set_robust_list(0x7f08f59d79e0, 24 <unfinished ...>
[pid 32619] <... mmap resumed> )        = 0x7f08f49d6000
[pid 32620] <... set_robust_list resumed> ) = 0
[pid 32619] mprotect(0x7f08f49d6000, 4096, PROT_NONE) = 0
[pid 32619] clone(child_stack=0x7f08f51d5fb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f08f51d69d0, tls=0x7f08f51d6700, child_tidptr=0x7f08f51d69d0) = 32621
Process 32621 attached
[pid 32619] mmap(NULL, 8392704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0 <unfinished ...>
[pid 32621] set_robust_list(0x7f08f51d69e0, 24 <unfinished ...>
[pid 32619] <... mmap resumed> )        = 0x7f08f41d5000
[pid 32621] <... set_robust_list resumed> ) = 0
[pid 32619] mprotect(0x7f08f41d5000, 4096, PROT_NONE) = 0
[pid 32619] clone(Process 32622 attached
child_stack=0x7f08f49d4fb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f08f49d59d0, tls=0x7f08f49d5700, child_tidptr=0x7f08f49d59d0) = 32622
[pid 32622] set_robust_list(0x7f08f49d59e0, 24) = 0
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 1, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 3, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 3, NULL <unfinished ...>
[pid 32619] rt_sigprocmask(SIG_BLOCK, NULL,  <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... rt_sigprocmask resumed> [], 8) = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 3, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 6) = 3
[pid 32622] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 7, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 10 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 8, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 11, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 14 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 12, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 15, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 16, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 17, NULL <unfinished ...>
[pid 32620] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 20 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 3
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 1
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 22 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 21, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] brk(0x13a8000 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32619] <... brk resumed> )         = 0x13a8000
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32619] pipe2( <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... pipe2 resumed> [3, 4], O_CLOEXEC) = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 23, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 24, NULL <unfinished ...>
[pid 32620] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 25, NULL <unfinished ...>
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/charset.alias", O_RDONLY|O_NOFOLLOW) = -1 ENOENT (No such file or directory)
[pid 32619] open("/gnu/store/x2vcwnrwhydd6knmlqsnan0jg13i96zd-glibc-2.22/lib/gconv/gconv-modules.cache", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 32619] open("/gnu/store/x2vcwnrwhydd6knmlqsnan0jg13i96zd-glibc-2.22/lib/gconv/gconv-modules", O_RDONLY|O_CLOEXEC) = 6
[pid 32619] fstat(6, {st_mode=S_IFREG|0444, st_size=56095, ...}) = 0
[pid 32619] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f7b0e000
[pid 32619] read(6, "# GNU libc iconv configuration.\n"..., 4096) = 4096
[pid 32619] read(6, "1002//\tJUS_I.B1.002//\nmodule\tJUS"..., 4096) = 4096
[pid 32619] read(6, "ISO-IR-110//\t\tISO-8859-4//\nalias"..., 4096) = 4096
[pid 32619] read(6, "\t\tISO-8859-14//\nalias\tISO_8859-1"..., 4096) = 4096
[pid 32619] read(6, "IC-ES//\nalias\tEBCDICES//\t\tEBCDIC"..., 4096) = 4096
[pid 32619] read(6, "DIC-CP-ES//\t\tIBM284//\nalias\tCSIB"..., 4096) = 4096
[pid 32619] read(6, "//\nalias\tCSIBM864//\t\tIBM864//\nal"..., 4096) = 4096
[pid 32619] read(6, "BM939//\nmodule\tIBM939//\t\tINTERNA"..., 4096) = 4096
[pid 32619] read(6, "EUC-CN//\nalias\tCN-GB//\t\t\tEUC-CN/"..., 4096) = 4096
[pid 32619] read(6, "T//\nmodule\tISO-2022-CN-EXT//\tINT"..., 4096) = 4096
[pid 32619] read(6, "//\t\tISO_5428//\nalias\tISO_5428:19"..., 4096) = 4096
[pid 32619] brk(0x13c9000)              = 0x13c9000
[pid 32619] brk(0x13ca000)              = 0x13ca000
[pid 32619] read(6, "CII-8\t1\n\n#\tfrom\t\t\tto\t\t\tmodule\t\tc"..., 4096) = 4096
[pid 32619] read(6, "\tfrom\t\t\tto\t\t\tmodule\t\tcost\nalias\t"..., 4096) = 4096
[pid 32619] read(6, "712//\t\tINTERNAL\t\tIBM12712\t\t1\nmod"..., 4096) = 2847
[pid 32619] read(6, "", 4096)           = 0
[pid 32619] close(6)                    = 0
[pid 32619] munmap(0x7f08f7b0e000, 4096) = 0
[pid 32619] futex(0x7f08f5d78a48, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 32619] rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 28) = 3
[pid 32621] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 29, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 30, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 32 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 33, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 34, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 36 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 37, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 38, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 39, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 42 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 3
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 43, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 1
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 46 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 47, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 48 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 44, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 50, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f78f12a8, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 49, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 50, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 51, NULL <unfinished ...>
[pid 32619] brk(0x13da000)              = 0x13da000
[pid 32619] rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 54) = 3
[pid 32620] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 56 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 55, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 58 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 59, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 60 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 61, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 62, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 64 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 1
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 57, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 1
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 65, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 1
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 68 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 66, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 69, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 70 <unfinished ...>
[pid 32622] <... futex resumed> )       = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 71, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 72, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 72, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 72, NULL <unfinished ...>
[pid 32620] <... futex resumed> )       = 2
[pid 32619] brk(0x13eb000 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 73, NULL <unfinished ...>
[pid 32619] <... brk resumed> )         = 0x13eb000
[pid 32619] brk(0x13fb000)              = 0x13fb000
[pid 32619] clock_getres(0xfffffffa /* CLOCK_??? */, NULL) = 0
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 9892338}) = 0
[pid 32619] open("/dev/urandom", O_RDONLY) = 6
[pid 32619] fstat(6, {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 9), ...}) = 0
[pid 32619] ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7ffe14eb26b0) = -1 EINVAL (Invalid argument)
[pid 32619] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f7b0e000
[pid 32619] read(6, "y>\305*\3213\336\375\374\30\22\235\4\214p\330\372\371/*\246\250T\302. \267\373\312\211\314\340"..., 4096) = 4096
[pid 32619] close(6)                    = 0
[pid 32619] munmap(0x7f08f7b0e000, 4096) = 0
[pid 32619] brk(0x1411000)              = 0x1411000
[pid 32619] brk(0x142f000)              = 0x142f000
[pid 32619] brk(0x1457000)              = 0x1457000
[pid 32619] ioctl(0, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
[pid 32619] brk(0x150b000)              = 0x150b000
[pid 32619] fcntl(0, F_GETFL)           = 0x8402 (flags O_RDWR|O_APPEND|O_LARGEFILE)
[pid 32619] lseek(0, 0, SEEK_CUR)       = -1 ESPIPE (Illegal seek)
[pid 32619] ioctl(1, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7ffe14eb2880) = -1 ENOTTY (Inappropriate ioctl for device)
[pid 32619] fcntl(1, F_GETFL)           = 0x8001 (flags O_WRONLY|O_LARGEFILE)
[pid 32619] lseek(1, 0, SEEK_CUR)       = 52730
[pid 32619] fstat(1, {st_mode=S_IFREG|0644, st_size=52767, ...}) = 0
[pid 32619] ioctl(2, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7ffe14eb2880) = -1 ENOTTY (Inappropriate ioctl for device)
[pid 32619] fcntl(2, F_GETFL)           = 0x8001 (flags O_WRONLY|O_LARGEFILE)
[pid 32619] lseek(2, 0, SEEK_CUR)       = 53071
[pid 32619] fstat(2, {st_mode=S_IFREG|0644, st_size=53108, ...}) = 0
[pid 32619] open("/gnu/store/x2vcwnrwhydd6knmlqsnan0jg13i96zd-glibc-2.22/lib/gconv/ISO8859-1.so", O_RDONLY|O_CLOEXEC) = 6
[pid 32619] read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\5\0\0\0\0\0\0"..., 832) = 832
[pid 32619] fstat(6, {st_mode=S_IFREG|0555, st_size=12600, ...}) = 0
[pid 32619] mmap(NULL, 2105432, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7f08f3fd2000
[pid 32619] mprotect(0x7f08f3fd4000, 2093056, PROT_NONE) = 0
[pid 32619] mmap(0x7f08f41d3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x1000) = 0x7f08f41d3000
[pid 32619] close(6)                    = 0
[pid 32619] mprotect(0x7f08f41d3000, 4096, PROT_READ) = 0
[pid 32619] brk(0x152f000)              = 0x152f000
[pid 32619] brk(0x1534000)              = 0x1534000
[pid 32619] brk(0x152c000)              = 0x152c000
[pid 32619] stat("/home/dave/Code/guix/ice-9/eval.scm", 0x7ffe14eb27c0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/eval.scm", 0x7ffe14eb27c0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/eval.scm", 0x7ffe14eb27c0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/eval.scm", 0x7ffe14eb27c0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/eval.scm", 0x7ffe14eb27c0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/eval.scm", 0x7ffe14eb27c0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/eval.scm", 0x7ffe14eb27c0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/eval.scm", 0x7ffe14eb27c0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/eval.scm", {st_mode=S_IFREG|0444, st_size=21354, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/eval.go", 0x7ffe14eb2850) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/eval.go", 0x7ffe14eb2850) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/eval.go", 0x7ffe14eb2850) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/eval.go", 0x7ffe14eb2850) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/eval.go", 0x7ffe14eb2850) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/eval.go", 0x7ffe14eb2850) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/eval.go", 0x7ffe14eb2850) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/eval.go", {st_mode=S_IFREG|0444, st_size=13730, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/eval.go", O_RDONLY|O_CLOEXEC) = 6
[pid 32619] fstat(6, {st_mode=S_IFREG|0444, st_size=13730, ...}) = 0
[pid 32619] mmap(NULL, 13730, PROT_READ, MAP_PRIVATE, 6, 0) = 0x7f08f7b0b000
[pid 32619] close(6)                    = 0
[pid 32619] getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
[pid 32619] stat("/home/dave/Code/guix/init.scm", 0x7ffe14eb2860) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/init.scm", 0x7ffe14eb2860) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/init.scm", 0x7ffe14eb2860) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/init.scm", 0x7ffe14eb2860) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/init.scm", 0x7ffe14eb2860) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/init.scm", 0x7ffe14eb2860) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/init.scm", 0x7ffe14eb2860) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/init.scm", 0x7ffe14eb2860) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/init.scm", 0x7ffe14eb2860) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/site/2.0/init.scm", 0x7ffe14eb2860) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/site/init.scm", 0x7ffe14eb2860) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/init.scm", 0x7ffe14eb2860) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/boot-9.scm", 0x7ffe14eb27a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/boot-9", 0x7ffe14eb27a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/boot-9.scm", 0x7ffe14eb27a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/boot-9", 0x7ffe14eb27a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/boot-9.scm", 0x7ffe14eb27a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/boot-9", 0x7ffe14eb27a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/boot-9.scm", 0x7ffe14eb27a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/boot-9", 0x7ffe14eb27a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/boot-9.scm", 0x7ffe14eb27a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/boot-9", 0x7ffe14eb27a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/boot-9.scm", 0x7ffe14eb27a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/boot-9", 0x7ffe14eb27a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/boot-9.scm", 0x7ffe14eb27a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/boot-9", 0x7ffe14eb27a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/boot-9.scm", 0x7ffe14eb27a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/boot-9", 0x7ffe14eb27a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/boot-9.scm", {st_mode=S_IFREG|0444, st_size=153113, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/boot-9.go", 0x7ffe14eb2830) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/boot-9.go", 0x7ffe14eb2830) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/boot-9.go", 0x7ffe14eb2830) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/boot-9.go", 0x7ffe14eb2830) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/boot-9.go", 0x7ffe14eb2830) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/boot-9.go", 0x7ffe14eb2830) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/boot-9.go", 0x7ffe14eb2830) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/boot-9.go", {st_mode=S_IFREG|0444, st_size=266506, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/boot-9.go", O_RDONLY|O_CLOEXEC) = 6
[pid 32619] fstat(6, {st_mode=S_IFREG|0444, st_size=266506, ...}) = 0
[pid 32619] mmap(NULL, 266506, PROT_READ, MAP_PRIVATE, 6, 0) = 0x7f08f7ac9000
[pid 32619] close(6)                    = 0
[pid 32619] open("/proc/self/statm", O_RDONLY) = 6
[pid 32619] fstat(6, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
[pid 32619] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f7ac8000
[pid 32619] read(6, "15310 1549 983 2 0 6852 0\n", 1024) = 26
[pid 32619] close(6)                    = 0
[pid 32619] munmap(0x7f08f7ac8000, 4096) = 0
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 15834047}) = 0
[pid 32619] rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 76) = 3
[pid 32622] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 78 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 77, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 80 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 81, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 82, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 82, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 84 <unfinished ...>
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 79, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 85, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 87, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 86 <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 88, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 88, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 90 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 1
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 91, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 92, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 92, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 93, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 93, NULL <unfinished ...>
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 17158328}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/r4rs.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/r4rs", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/r4rs.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/r4rs", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/r4rs.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/r4rs", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/r4rs.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/r4rs", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/r4rs.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/r4rs", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/r4rs.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/r4rs", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/r4rs.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/r4rs", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/r4rs.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/r4rs", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/r4rs.scm", {st_mode=S_IFREG|0444, st_size=9645, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/r4rs.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/r4rs.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/r4rs.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/r4rs.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/r4rs.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/r4rs.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/r4rs.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/r4rs.go", {st_mode=S_IFREG|0444, st_size=11652, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/r4rs.go", O_RDONLY|O_CLOEXEC) = 6
[pid 32619] fstat(6, {st_mode=S_IFREG|0444, st_size=11652, ...}) = 0
[pid 32619] mmap(NULL, 11652, PROT_READ, MAP_PRIVATE, 6, 0) = 0x7f08f7ac6000
[pid 32619] close(6)                    = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/psyntax-pp.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/psyntax-pp", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/psyntax-pp.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/psyntax-pp", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/psyntax-pp.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/psyntax-pp", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/psyntax-pp.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/psyntax-pp", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/psyntax-pp.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/psyntax-pp", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/psyntax-pp.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/psyntax-pp", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/psyntax-pp.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/psyntax-pp", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/psyntax-pp.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/psyntax-pp", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/psyntax-pp.scm", {st_mode=S_IFREG|0444, st_size=164836, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/psyntax-pp.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/psyntax-pp.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/psyntax-pp.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/psyntax-pp.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/psyntax-pp.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/psyntax-pp.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/psyntax-pp.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/psyntax-pp.go", {st_mode=S_IFREG|0444, st_size=202504, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/psyntax-pp.go", O_RDONLY|O_CLOEXEC) = 6
[pid 32619] fstat(6, {st_mode=S_IFREG|0444, st_size=202504, ...}) = 0
[pid 32619] mmap(NULL, 202504, PROT_READ, MAP_PRIVATE, 6, 0) = 0x7f08f7a94000
[pid 32619] close(6)                    = 0
[pid 32619] brk(0x159d000)              = 0x159d000
[pid 32619] brk(0x15ad000)              = 0x15ad000
[pid 32619] stat("/home/dave/Code/guix/ice-9/posix.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/posix", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/posix.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/posix", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/posix.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/posix", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/posix.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/posix", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/posix.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/posix", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/posix.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/posix", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/posix.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/posix", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/posix.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/posix", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/posix.scm", {st_mode=S_IFREG|0444, st_size=2793, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/posix.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/posix.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/posix.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/posix.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/posix.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/posix.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/posix.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/posix.go", {st_mode=S_IFREG|0444, st_size=7414, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/posix.go", O_RDONLY|O_CLOEXEC) = 6
[pid 32619] fstat(6, {st_mode=S_IFREG|0444, st_size=7414, ...}) = 0
[pid 32619] mmap(NULL, 7414, PROT_READ, MAP_PRIVATE, 6, 0) = 0x7f08f7a92000
[pid 32619] close(6)                    = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/networking.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/networking", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/networking.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/networking", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/networking.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/networking", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/networking.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/networking", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/networking.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/networking", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/networking.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/networking", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/networking.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/networking", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/networking.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/networking", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/networking.scm", {st_mode=S_IFREG|0444, st_size=3407, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/networking.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/networking.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/networking.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/networking.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/networking.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/networking.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/networking.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/networking.go", {st_mode=S_IFREG|0444, st_size=8963, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/networking.go", O_RDONLY|O_CLOEXEC) = 6
[pid 32619] fstat(6, {st_mode=S_IFREG|0444, st_size=8963, ...}) = 0
[pid 32619] mmap(NULL, 8963, PROT_READ, MAP_PRIVATE, 6, 0) = 0x7f08f7a8f000
[pid 32619] close(6)                    = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/deprecated.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/deprecated", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/deprecated.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/deprecated", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/deprecated.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/deprecated", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/deprecated.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/deprecated", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/deprecated.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/deprecated", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/deprecated.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/deprecated", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/deprecated.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/deprecated", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/deprecated.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/deprecated", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/deprecated.scm", {st_mode=S_IFREG|0444, st_size=31993, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/deprecated.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/deprecated.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/deprecated.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/deprecated.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/deprecated.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/deprecated.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/deprecated.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/deprecated.go", {st_mode=S_IFREG|0444, st_size=50304, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/deprecated.go", O_RDONLY|O_CLOEXEC) = 6
[pid 32619] fstat(6, {st_mode=S_IFREG|0444, st_size=50304, ...}) = 0
[pid 32619] mmap(NULL, 50304, PROT_READ, MAP_PRIVATE, 6, 0) = 0x7f08f7a82000
[pid 32619] close(6)                    = 0
[pid 32619] brk(0x1644000)              = 0x1644000
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-4.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-4", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-4.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-4", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-4.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-4", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-4.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-4", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-4.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-4", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-4.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-4", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-4.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-4", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-4.scm", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-4", 0x7ffe14eb2490) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/srfi/srfi-4.scm", {st_mode=S_IFREG|0444, st_size=5107, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-4.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-4.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-4.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-4.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-4.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-4.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-4.go", 0x7ffe14eb2520) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-4.go", {st_mode=S_IFREG|0444, st_size=22803, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-4.go", O_RDONLY|O_CLOEXEC) = 6
[pid 32619] fstat(6, {st_mode=S_IFREG|0444, st_size=22803, ...}) = 0
[pid 32619] mmap(NULL, 22803, PROT_READ, MAP_PRIVATE, 6, 0) = 0x7f08f7a7c000
[pid 32619] close(6)                    = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/bytevectors.scm", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/bytevectors", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/bytevectors.scm", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/bytevectors", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/bytevectors.scm", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/bytevectors", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/bytevectors.scm", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/bytevectors", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/bytevectors.scm", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/bytevectors", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/bytevectors.scm", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/bytevectors", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/bytevectors.scm", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/bytevectors", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/bytevectors.scm", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/bytevectors", 0x7ffe14eb2180) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/rnrs/bytevectors.scm", {st_mode=S_IFREG|0444, st_size=3383, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/bytevectors.go", 0x7ffe14eb2210) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/bytevectors.go", 0x7ffe14eb2210) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/bytevectors.go", 0x7ffe14eb2210) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/bytevectors.go", 0x7ffe14eb2210) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/bytevectors.go", 0x7ffe14eb2210) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/bytevectors.go", 0x7ffe14eb2210) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/bytevectors.go", 0x7ffe14eb2210) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/bytevectors.go", {st_mode=S_IFREG|0444, st_size=3592, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/bytevectors.go", O_RDONLY|O_CLOEXEC) = 6
[pid 32619] fstat(6, {st_mode=S_IFREG|0444, st_size=3592, ...}) = 0
[pid 32619] mmap(NULL, 3592, PROT_READ, MAP_PRIVATE, 6, 0) = 0x7f08f7a7b000
[pid 32619] close(6)                    = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/command-line.scm", 0x7ffe14eb2310) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/command-line", 0x7ffe14eb2310) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/command-line.scm", 0x7ffe14eb2310) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/command-line", 0x7ffe14eb2310) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/command-line.scm", 0x7ffe14eb2310) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/command-line", 0x7ffe14eb2310) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/command-line.scm", 0x7ffe14eb2310) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/command-line", 0x7ffe14eb2310) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/command-line.scm", 0x7ffe14eb2310) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/command-line", 0x7ffe14eb2310) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/command-line.scm", 0x7ffe14eb2310) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/command-line", 0x7ffe14eb2310) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/command-line.scm", 0x7ffe14eb2310) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/command-line", 0x7ffe14eb2310) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/command-line.scm", 0x7ffe14eb2310) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/command-line", 0x7ffe14eb2310) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/command-line.scm", {st_mode=S_IFREG|0444, st_size=18608, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/command-line.go", 0x7ffe14eb23a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/command-line.go", 0x7ffe14eb23a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/command-line.go", 0x7ffe14eb23a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/command-line.go", 0x7ffe14eb23a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/command-line.go", 0x7ffe14eb23a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/command-line.go", 0x7ffe14eb23a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/command-line.go", 0x7ffe14eb23a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/command-line.go", {st_mode=S_IFREG|0444, st_size=17840, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/command-line.go", O_RDONLY|O_CLOEXEC) = 6
[pid 32619] fstat(6, {st_mode=S_IFREG|0444, st_size=17840, ...}) = 0
[pid 32619] mmap(NULL, 17840, PROT_READ, MAP_PRIVATE, 6, 0) = 0x7f08f7a76000
[pid 32619] close(6)                    = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/control.scm", 0x7ffe14eb2370) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/control", 0x7ffe14eb2370) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/control.scm", 0x7ffe14eb2370) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/control", 0x7ffe14eb2370) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/control.scm", 0x7ffe14eb2370) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/control", 0x7ffe14eb2370) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/control.scm", 0x7ffe14eb2370) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/control", 0x7ffe14eb2370) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/control.scm", 0x7ffe14eb2370) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/control", 0x7ffe14eb2370) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/control.scm", 0x7ffe14eb2370) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/control", 0x7ffe14eb2370) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/control.scm", 0x7ffe14eb2370) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/control", 0x7ffe14eb2370) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/control.scm", 0x7ffe14eb2370) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/control", 0x7ffe14eb2370) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/control.scm", {st_mode=S_IFREG|0444, st_size=4036, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/control.go", 0x7ffe14eb2400) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/control.go", 0x7ffe14eb2400) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/control.go", 0x7ffe14eb2400) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/control.go", 0x7ffe14eb2400) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/control.go", 0x7ffe14eb2400) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/control.go", 0x7ffe14eb2400) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/control.go", 0x7ffe14eb2400) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/control.go", {st_mode=S_IFREG|0444, st_size=8823, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/control.go", O_RDONLY|O_CLOEXEC) = 6
[pid 32619] fstat(6, {st_mode=S_IFREG|0444, st_size=8823, ...}) = 0
[pid 32619] mmap(NULL, 8823, PROT_READ, MAP_PRIVATE, 6, 0) = 0x7f08f7a73000
[pid 32619] close(6)                    = 0
[pid 32619] getcwd("/home/dave/Code/guix", 100) = 21
[pid 32619] stat("/home/dave/Code/guix/scripts/guix", {st_mode=S_IFREG|0755, st_size=2861, ...}) = 0
[pid 32619] lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave/Code", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave/Code/guix", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave/Code/guix/scripts", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave/Code/guix/scripts/guix", {st_mode=S_IFREG|0755, st_size=2861, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/test-tmp/var/32595/cache-32595/guile/ccache/2.0-LE-8-2.0/home/dave/Code/guix/scripts/guix.go", 0x7ffe14eb2410) = -1 ENOENT (No such file or directory)
[pid 32619] open("/home/dave/Code/guix/scripts/guix", O_RDONLY) = 6
[pid 32619] lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave/Code", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave/Code/guix", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave/Code/guix/scripts", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave/Code/guix/scripts/guix", {st_mode=S_IFREG|0755, st_size=2861, ...}) = 0
[pid 32619] fcntl(6, F_GETFL)           = 0x8000 (flags O_RDONLY|O_LARGEFILE)
[pid 32619] lseek(6, 0, SEEK_CUR)       = 0
[pid 32619] fstat(6, {st_mode=S_IFREG|0755, st_size=2861, ...}) = 0
[pid 32619] read(6, "#!/gnu/store/al0jh5j7wrwq5l9b9hd"..., 4096) = 2861
[pid 32619] stat("/home/dave/Code/guix/ice-9/regex.scm", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/regex", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/regex.scm", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/regex", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/regex.scm", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/regex", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/regex.scm", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/regex", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/regex.scm", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/regex", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/regex.scm", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/regex", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/regex.scm", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/regex", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/regex.scm", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/regex", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/regex.scm", {st_mode=S_IFREG|0444, st_size=9084, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/regex.go", 0x7ffe14eb2230) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/regex.go", 0x7ffe14eb2230) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/regex.go", 0x7ffe14eb2230) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/regex.go", 0x7ffe14eb2230) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/regex.go", 0x7ffe14eb2230) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/regex.go", 0x7ffe14eb2230) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/regex.go", 0x7ffe14eb2230) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/regex.go", {st_mode=S_IFREG|0444, st_size=7562, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/regex.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=7562, ...}) = 0
[pid 32619] mmap(NULL, 7562, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a71000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x1654000)              = 0x1654000
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-26.scm", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-26", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-26.scm", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-26", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-26.scm", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-26", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-26.scm", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-26", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-26.scm", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-26", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-26.scm", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-26", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-26.scm", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-26", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-26.scm", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-26", 0x7ffe14eb21a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/srfi/srfi-26.scm", {st_mode=S_IFREG|0444, st_size=2643, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-26.go", 0x7ffe14eb2230) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-26.go", 0x7ffe14eb2230) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-26.go", 0x7ffe14eb2230) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-26.go", 0x7ffe14eb2230) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-26.go", 0x7ffe14eb2230) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-26.go", 0x7ffe14eb2230) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-26.go", 0x7ffe14eb2230) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-26.go", {st_mode=S_IFREG|0444, st_size=6860, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-26.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=6860, ...}) = 0
[pid 32619] mmap(NULL, 6860, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a6f000
[pid 32619] close(7)                    = 0
[pid 32619] open("/proc/self/statm", O_RDONLY) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
[pid 32619] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f7a6e000
[pid 32619] read(7, "15696 1942 1112 2 0 7148 0\n", 1024) = 27
[pid 32619] close(7)                    = 0
[pid 32619] munmap(0x7f08f7a6e000, 4096) = 0
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 29065192}) = 0
[pid 32619] rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 96) = 3
[pid 32621] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 98 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 97, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 100, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 99, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 104, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 105, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 105, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 102 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 103, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 105, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 105, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 105, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 2
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 108) = 3
[pid 32620] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 109, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 110, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 111, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 114) = 3
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 115, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 116, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 117, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 120) = 3
[pid 32622] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 121, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 122, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 123, NULL <unfinished ...>
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 31482885}) = 0
[pid 32619] brk(0x16aa000)              = 0x16aa000
[pid 32619] stat("/home/dave/Code/guix/guix/ui.scm", {st_mode=S_IFREG|0644, st_size=42308, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/ui.go", {st_mode=S_IFREG|0644, st_size=71491, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/ui.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=71491, ...}) = 0
[pid 32619] mmap(NULL, 71491, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a5d000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/guix/utils.scm", {st_mode=S_IFREG|0644, st_size=27240, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/utils.go", {st_mode=S_IFREG|0644, st_size=62481, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/utils.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=62481, ...}) = 0
[pid 32619] mmap(NULL, 62481, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a4d000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/guix/config.scm", {st_mode=S_IFREG|0644, st_size=2465, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/config.go", {st_mode=S_IFREG|0644, st_size=2085, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/config.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=2085, ...}) = 0
[pid 32619] mmap(NULL, 2085, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a4c000
[pid 32619] close(7)                    = 0
[pid 32619] lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave/Code", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave/Code/guix", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave/Code/guix/test-tmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave/Code/guix/test-tmp/store", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] brk(0x170d000)              = 0x170d000
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-1.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-1", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-1.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-1", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-1.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-1", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-1.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-1", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-1.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-1", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-1.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-1", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-1.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-1", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-1.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-1", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/srfi/srfi-1.scm", {st_mode=S_IFREG|0444, st_size=29147, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-1.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-1.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-1.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-1.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-1.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-1.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-1.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-1.go", {st_mode=S_IFREG|0444, st_size=42668, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-1.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=42668, ...}) = 0
[pid 32619] mmap(NULL, 42668, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a41000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-9.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-9", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-9.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-9", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-9.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-9", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-9.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-9", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-9.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-9", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-9.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-9", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-9.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-9", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-9.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-9", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/srfi/srfi-9.scm", {st_mode=S_IFREG|0444, st_size=13429, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-9.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-9.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-9.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-9.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-9.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-9.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-9.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-9.go", {st_mode=S_IFREG|0444, st_size=31318, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-9.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=31318, ...}) = 0
[pid 32619] mmap(NULL, 31318, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a39000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/system/base/ck.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/ck", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/ck.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/ck", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/ck.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/ck", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/ck.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/ck", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/ck.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/ck", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/ck.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/ck", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/ck.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/ck", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/ck.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/ck", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/system/base/ck.scm", {st_mode=S_IFREG|0444, st_size=2201, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/system/base/ck.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/ck.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/ck.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/ck.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/ck.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/ck.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/ck.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/base/ck.go", {st_mode=S_IFREG|0444, st_size=4304, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/base/ck.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=4304, ...}) = 0
[pid 32619] mmap(NULL, 4304, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a37000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-11.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-11", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-11.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-11", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-11.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-11", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-11.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-11", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-11.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-11", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-11.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-11", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-11.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-11", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-11.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-11", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/srfi/srfi-11.scm", {st_mode=S_IFREG|0444, st_size=5511, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-11.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-11.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-11.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-11.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-11.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-11.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-11.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-11.go", {st_mode=S_IFREG|0444, st_size=8084, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-11.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=8084, ...}) = 0
[pid 32619] mmap(NULL, 8084, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a35000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-39.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-39", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-39.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-39", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-39.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-39", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-39.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-39", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-39.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-39", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-39.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-39", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-39.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-39", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-39.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-39", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/srfi/srfi-39.scm", {st_mode=S_IFREG|0444, st_size=2159, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-39.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-39.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-39.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-39.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-39.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-39.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-39.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-39.go", {st_mode=S_IFREG|0444, st_size=1348, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-39.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=1348, ...}) = 0
[pid 32619] mmap(NULL, 1348, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a34000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-60.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-60", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-60.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-60", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-60.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-60", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-60.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-60", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-60.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-60", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-60.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-60", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-60.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-60", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-60.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-60", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/srfi/srfi-60.scm", {st_mode=S_IFREG|0444, st_size=2174, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-60.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-60.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-60.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-60.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-60.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-60.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-60.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-60.go", {st_mode=S_IFREG|0444, st_size=2128, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-60.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=2128, ...}) = 0
[pid 32619] mmap(NULL, 2128, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a33000
[pid 32619] close(7)                    = 0
[pid 32619] open("/proc/self/statm", O_RDONLY) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
[pid 32619] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f7a32000
[pid 32619] read(7, "15941 2310 1253 2 0 7333 0\n", 1024) = 27
[pid 32619] close(7)                    = 0
[pid 32619] munmap(0x7f08f7a32000, 4096) = 0
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 38944593}) = 0
[pid 32619] rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 126) = 3
[pid 32622] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 127, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 128 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 130 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 129, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 132 <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 131, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 133, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 134 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 136, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 135, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 138 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 139, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 140 <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 141, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 142, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 145, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 146, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 144 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 146, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 2
[pid 32620] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 150 <unfinished ...>
[pid 32620] <... futex resumed> )       = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 147, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 151, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 152, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 154 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 155, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 3
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 156, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 157, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 157, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 160 <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 2
[pid 32622] <... futex resumed> )       = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 161, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 162, NULL <unfinished ...>
[pid 32620] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 163, NULL <unfinished ...>
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 42123787}) = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/io/ports.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/io/ports", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/io/ports.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/io/ports", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/io/ports.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/io/ports", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/io/ports.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/io/ports", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/io/ports.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/io/ports", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/io/ports.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/io/ports", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/io/ports.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/io/ports", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/io/ports.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/io/ports", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/rnrs/io/ports.scm", {st_mode=S_IFREG|0444, st_size=16849, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/io/ports.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/io/ports.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/io/ports.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/io/ports.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/io/ports.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/io/ports.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/io/ports.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/io/ports.go", {st_mode=S_IFREG|0444, st_size=39240, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/io/ports.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=39240, ...}) = 0
[pid 32619] mmap(NULL, 39240, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a29000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x1771000)              = 0x1771000
[pid 32619] stat("/home/dave/Code/guix/ice-9/binary-ports.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/binary-ports", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/binary-ports.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/binary-ports", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/binary-ports.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/binary-ports", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/binary-ports.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/binary-ports", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/binary-ports.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/binary-ports", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/binary-ports.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/binary-ports", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/binary-ports.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/binary-ports", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/binary-ports.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/binary-ports", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/binary-ports.scm", {st_mode=S_IFREG|0444, st_size=1921, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/binary-ports.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/binary-ports.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/binary-ports.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/binary-ports.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/binary-ports.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/binary-ports.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/binary-ports.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/binary-ports.go", {st_mode=S_IFREG|0444, st_size=1146, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/binary-ports.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=1146, ...}) = 0
[pid 32619] mmap(NULL, 1146, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a28000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/base.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/base", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/base.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/base", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/base.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/base", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/base.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/base", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/base.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/base", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/base.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/base", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/base.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/base", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/base.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/base", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/rnrs/base.scm", {st_mode=S_IFREG|0444, st_size=10294, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/base.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/base.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/base.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/base.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/base.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/base.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/base.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/base.go", {st_mode=S_IFREG|0444, st_size=22876, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/base.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=22876, ...}) = 0
[pid 32619] mmap(NULL, 22876, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a22000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x1781000)              = 0x1781000
[pid 32619] brk(0x17f0000)              = 0x17f0000
[pid 32619] stat("/home/dave/Code/guix/rnrs/enums.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/enums", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/enums.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/enums", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/enums.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/enums", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/enums.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/enums", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/enums.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/enums", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/enums.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/enums", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/enums.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/enums", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/enums.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/enums", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/rnrs/enums.scm", {st_mode=S_IFREG|0444, st_size=5463, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/enums.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/enums.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/enums.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/enums.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/enums.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/enums.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/enums.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/enums.go", {st_mode=S_IFREG|0444, st_size=9545, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/enums.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=9545, ...}) = 0
[pid 32619] mmap(NULL, 9545, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a1f000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/conditions.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/conditions", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/conditions.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/conditions", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/conditions.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/conditions", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/conditions.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/conditions", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/conditions.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/conditions", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/conditions.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/conditions", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/conditions.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/conditions", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/conditions.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/conditions", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/rnrs/conditions.scm", {st_mode=S_IFREG|0444, st_size=6998, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/conditions.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/conditions.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/conditions.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/conditions.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/conditions.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/conditions.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/conditions.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/conditions.go", {st_mode=S_IFREG|0444, st_size=9841, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/conditions.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=9841, ...}) = 0
[pid 32619] mmap(NULL, 9841, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a1c000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/lists.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/lists", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/lists.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/lists", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/lists.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/lists", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/lists.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/lists", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/lists.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/lists", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/lists.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/lists", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/lists.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/lists", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/lists.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/lists", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/rnrs/lists.scm", {st_mode=S_IFREG|0444, st_size=2032, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/lists.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/lists.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/lists.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/lists.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/lists.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/lists.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/lists.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/lists.go", {st_mode=S_IFREG|0444, st_size=3845, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/lists.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=3845, ...}) = 0
[pid 32619] mmap(NULL, 3845, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a1b000
[pid 32619] close(7)                    = 0
[pid 32619] open("/proc/self/statm", O_RDONLY) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
[pid 32619] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f7a1a000
[pid 32619] read(7, "16192 2543 1278 2 0 7560 0\n", 1024) = 27
[pid 32619] close(7)                    = 0
[pid 32619] munmap(0x7f08f7a1a000, 4096) = 0
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 51843766}) = 0
[pid 32619] rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 166) = 3
[pid 32622] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 168 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 167, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 169, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 170 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 171, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 172 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 173, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 174 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 175, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 176 <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 177, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 178 <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32619] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 179, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 180 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 182, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 181, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 184 <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 186 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 185, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 187, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 188, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 188, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 190 <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32620] <... futex resumed> )       = 2
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32619] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 191, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 192 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 193, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 194, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 195, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 195, NULL <unfinished ...>
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 55505462}) = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/records/procedural.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/records/procedural", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/records/procedural.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/records/procedural", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/records/procedural.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/records/procedural", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/records/procedural.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/records/procedural", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/records/procedural.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/records/procedural", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/records/procedural.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/records/procedural", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/records/procedural.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/records/procedural", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/records/procedural.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/records/procedural", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/rnrs/records/procedural.scm", {st_mode=S_IFREG|0444, st_size=10285, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/records/procedural.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/records/procedural.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/records/procedural.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/records/procedural.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/records/procedural.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/records/procedural.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/records/procedural.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/records/procedural.go", {st_mode=S_IFREG|0444, st_size=10435, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/records/procedural.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=10435, ...}) = 0
[pid 32619] mmap(NULL, 10435, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a18000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/receive.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/receive", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/receive.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/receive", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/receive.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/receive", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/receive.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/receive", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/receive.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/receive", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/receive.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/receive", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/receive.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/receive", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/receive.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/receive", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/receive.scm", {st_mode=S_IFREG|0444, st_size=1082, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/receive.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/receive.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/receive.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/receive.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/receive.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/receive.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/receive.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/receive.go", {st_mode=S_IFREG|0444, st_size=1817, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/receive.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=1817, ...}) = 0
[pid 32619] mmap(NULL, 1817, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a17000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/exceptions.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/exceptions", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/exceptions.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/exceptions", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/exceptions.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/exceptions", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/exceptions.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/exceptions", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/exceptions.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/exceptions", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/exceptions.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/exceptions", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/exceptions.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/exceptions", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/exceptions.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/exceptions", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/rnrs/exceptions.scm", {st_mode=S_IFREG|0444, st_size=12200, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/exceptions.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/exceptions.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/exceptions.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/exceptions.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/exceptions.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/exceptions.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/exceptions.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/exceptions.go", {st_mode=S_IFREG|0444, st_size=14452, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/exceptions.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=14452, ...}) = 0
[pid 32619] mmap(NULL, 14452, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a13000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/control.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/control", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/control.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/control", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/control.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/control", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/control.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/control", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/control.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/control", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/control.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/control", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/control.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/control", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/control.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/control", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/rnrs/control.scm", {st_mode=S_IFREG|0444, st_size=986, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/control.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/control.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/control.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/control.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/control.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/control.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/control.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/control.go", {st_mode=S_IFREG|0444, st_size=1433, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/control.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=1433, ...}) = 0
[pid 32619] mmap(NULL, 1433, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a12000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/records/inspection.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/records/inspection", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/records/inspection.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/records/inspection", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/records/inspection.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/records/inspection", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/records/inspection.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/records/inspection", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/records/inspection.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/records/inspection", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/records/inspection.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/records/inspection", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/records/inspection.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/records/inspection", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/records/inspection.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/records/inspection", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/rnrs/records/inspection.scm", {st_mode=S_IFREG|0444, st_size=3433, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/records/inspection.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/records/inspection.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/records/inspection.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/records/inspection.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/records/inspection.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/records/inspection.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/records/inspection.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/records/inspection.go", {st_mode=S_IFREG|0444, st_size=5267, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/records/inspection.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=5267, ...}) = 0
[pid 32619] mmap(NULL, 5267, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a10000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/arithmetic/bitwise.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/arithmetic/bitwise", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/arithmetic/bitwise.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/arithmetic/bitwise", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/arithmetic/bitwise.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/arithmetic/bitwise", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/arithmetic/bitwise.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/arithmetic/bitwise", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/arithmetic/bitwise.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/arithmetic/bitwise", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/arithmetic/bitwise.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/arithmetic/bitwise", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/arithmetic/bitwise.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/arithmetic/bitwise", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/arithmetic/bitwise.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/arithmetic/bitwise", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/rnrs/arithmetic/bitwise.scm", {st_mode=S_IFREG|0444, st_size=3131, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/arithmetic/bitwise.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/arithmetic/bitwise.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/arithmetic/bitwise.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/arithmetic/bitwise.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/arithmetic/bitwise.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/arithmetic/bitwise.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/arithmetic/bitwise.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/arithmetic/bitwise.go", {st_mode=S_IFREG|0444, st_size=4351, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/arithmetic/bitwise.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=4351, ...}) = 0
[pid 32619] mmap(NULL, 4351, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a0e000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x1880000)              = 0x1880000
[pid 32619] stat("/home/dave/Code/guix/rnrs/syntax-case.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/syntax-case", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/syntax-case.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/syntax-case", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/syntax-case.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/syntax-case", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/syntax-case.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/syntax-case", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/syntax-case.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/syntax-case", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/syntax-case.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/syntax-case", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/syntax-case.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/syntax-case", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/syntax-case.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/syntax-case", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/rnrs/syntax-case.scm", {st_mode=S_IFREG|0444, st_size=1896, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/syntax-case.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/syntax-case.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/syntax-case.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/syntax-case.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/syntax-case.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/syntax-case.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/syntax-case.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/syntax-case.go", {st_mode=S_IFREG|0444, st_size=3202, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/syntax-case.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=3202, ...}) = 0
[pid 32619] mmap(NULL, 3202, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a0d000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/optargs.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/optargs", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/optargs.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/optargs", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/optargs.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/optargs", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/optargs.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/optargs", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/optargs.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/optargs", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/optargs.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/optargs", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/optargs.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/optargs", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/optargs.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/optargs", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/optargs.scm", {st_mode=S_IFREG|0444, st_size=16123, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/optargs.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/optargs.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/optargs.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/optargs.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/optargs.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/optargs.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/optargs.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/optargs.go", {st_mode=S_IFREG|0444, st_size=21021, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/optargs.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=21021, ...}) = 0
[pid 32619] mmap(NULL, 21021, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a07000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/system/base/pmatch.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/pmatch", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/pmatch.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/pmatch", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/pmatch.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/pmatch", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/pmatch.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/pmatch", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/pmatch.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/pmatch", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/pmatch.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/pmatch", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/pmatch.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/pmatch", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/pmatch.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/pmatch", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/system/base/pmatch.scm", {st_mode=S_IFREG|0444, st_size=2574, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/system/base/pmatch.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/pmatch.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/pmatch.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/pmatch.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/pmatch.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/pmatch.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/pmatch.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/base/pmatch.go", {st_mode=S_IFREG|0444, st_size=8596, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/base/pmatch.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=8596, ...}) = 0
[pid 32619] mmap(NULL, 8596, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7a04000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/records/syntactic.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/records/syntactic", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/records/syntactic.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/records/syntactic", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/records/syntactic.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/records/syntactic", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/records/syntactic.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/records/syntactic", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/records/syntactic.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/records/syntactic", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/records/syntactic.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/records/syntactic", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/records/syntactic.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/records/syntactic", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/records/syntactic.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/records/syntactic", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/rnrs/records/syntactic.scm", {st_mode=S_IFREG|0444, st_size=11271, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/records/syntactic.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/records/syntactic.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/records/syntactic.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/records/syntactic.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/records/syntactic.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/records/syntactic.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/records/syntactic.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/records/syntactic.go", {st_mode=S_IFREG|0444, st_size=22196, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/records/syntactic.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=22196, ...}) = 0
[pid 32619] mmap(NULL, 22196, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f79fe000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x1890000)              = 0x1890000
[pid 32619] stat("/home/dave/Code/guix/rnrs/hashtables.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/hashtables", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/hashtables.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/hashtables", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/hashtables.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/hashtables", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/hashtables.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/hashtables", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/hashtables.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/hashtables", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/hashtables.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/hashtables", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/hashtables.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/hashtables", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/hashtables.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/hashtables", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/rnrs/hashtables.scm", {st_mode=S_IFREG|0444, st_size=6169, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/hashtables.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/hashtables.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/hashtables.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/hashtables.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/hashtables.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/hashtables.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/hashtables.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/hashtables.go", {st_mode=S_IFREG|0444, st_size=8461, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/hashtables.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=8461, ...}) = 0
[pid 32619] mmap(NULL, 8461, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f79fb000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-69.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-69", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-69.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-69", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-69.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-69", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-69.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-69", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-69.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-69", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-69.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-69", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-69.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-69", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-69.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-69", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/srfi/srfi-69.scm", {st_mode=S_IFREG|0444, st_size=13001, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-69.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-69.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-69.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-69.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-69.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-69.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-69.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-69.go", {st_mode=S_IFREG|0444, st_size=48733, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-69.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=48733, ...}) = 0
[pid 32619] mmap(NULL, 48733, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f79ef000
[pid 32619] close(7)                    = 0
[pid 32619] open("/proc/self/statm", O_RDONLY) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
[pid 32619] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f79ee000
[pid 32619] read(7, "16396 2714 1308 2 0 7720 0\n", 1024) = 27
[pid 32619] close(7)                    = 0
[pid 32619] munmap(0x7f08f79ee000, 4096) = 0
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 67415484}) = 0
[pid 32619] rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 198) = 3
[pid 32621] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 200 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 199, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 201, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 202 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 204 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 203, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 205, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 206 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 207, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 208, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 208, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 208, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 210 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 211, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 212, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 212, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 214 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 1
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 215, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 216, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 216, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 217, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 217, NULL <unfinished ...>
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 70807653}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-13.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-13", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-13.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-13", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-13.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-13", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-13.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-13", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-13.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-13", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-13.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-13", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-13.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-13", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-13.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-13", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/srfi/srfi-13.scm", {st_mode=S_IFREG|0444, st_size=2788, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-13.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-13.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-13.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-13.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-13.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-13.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-13.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-13.go", {st_mode=S_IFREG|0444, st_size=2938, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-13.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=2938, ...}) = 0
[pid 32619] mmap(NULL, 2938, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f79ee000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x1950000)              = 0x1950000
[pid 32619] stat("/home/dave/Code/guix/rnrs/files.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/files", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/files.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/rnrs/files", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/files.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/files", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/files.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/files", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/files.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/files", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/files.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/files", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/files.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/files", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/files.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/files", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/rnrs/files.scm", {st_mode=S_IFREG|0444, st_size=3406, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/rnrs/files.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/files.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/files.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/rnrs/files.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/rnrs/files.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/rnrs/files.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/rnrs/files.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/files.go", {st_mode=S_IFREG|0444, st_size=4702, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/rnrs/files.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=4702, ...}) = 0
[pid 32619] mmap(NULL, 4702, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f79ec000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-8.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-8", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-8.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-8", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-8.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-8", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-8.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-8", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-8.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-8", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-8.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-8", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-8.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-8", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-8.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-8", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/srfi/srfi-8.scm", {st_mode=S_IFREG|0444, st_size=1103, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-8.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-8.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-8.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-8.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-8.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-8.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-8.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-8.go", {st_mode=S_IFREG|0444, st_size=619, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-8.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=619, ...}) = 0
[pid 32619] mmap(NULL, 619, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f79eb000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/rdelim.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/rdelim", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/rdelim.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/rdelim", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/rdelim.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/rdelim", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/rdelim.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/rdelim", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/rdelim.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/rdelim", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/rdelim.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/rdelim", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/rdelim.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/rdelim", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/rdelim.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/rdelim", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/rdelim.scm", {st_mode=S_IFREG|0444, st_size=7682, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/rdelim.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/rdelim.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/rdelim.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/rdelim.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/rdelim.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/rdelim.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/rdelim.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/rdelim.go", {st_mode=S_IFREG|0444, st_size=8079, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/rdelim.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=8079, ...}) = 0
[pid 32619] mmap(NULL, 8079, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f79e9000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build/utils.scm", {st_mode=S_IFREG|0644, st_size=39810, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build/utils.go", {st_mode=S_IFREG|0644, st_size=60070, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/build/utils.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=60070, ...}) = 0
[pid 32619] mmap(NULL, 60070, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f79da000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/ftw.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/ftw", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/ftw.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/ftw", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/ftw.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/ftw", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/ftw.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/ftw", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/ftw.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/ftw", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/ftw.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/ftw", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/ftw.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/ftw", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/ftw.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/ftw", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/ftw.scm", {st_mode=S_IFREG|0444, st_size=24823, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/ftw.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/ftw.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/ftw.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/ftw.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/ftw.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/ftw.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/ftw.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/ftw.go", {st_mode=S_IFREG|0444, st_size=22472, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/ftw.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=22472, ...}) = 0
[pid 32619] mmap(NULL, 22472, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f79d4000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/match.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/match", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/match.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/match", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/match.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/match", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/match.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/match", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/match.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/match", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/match.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/match", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/match.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/match", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/match.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/match", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/match.scm", {st_mode=S_IFREG|0444, st_size=2045, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/match.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/match.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/match.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/match.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/match.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/match.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/match.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/match.go", {st_mode=S_IFREG|0444, st_size=94411, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/match.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=94411, ...}) = 0
[pid 32619] mmap(NULL, 94411, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f79bc000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x1a2f000)              = 0x1a2f000
[pid 32619] stat("/home/dave/Code/guix/ice-9/vlist.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/vlist", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/vlist.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/vlist", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/vlist.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/vlist", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/vlist.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/vlist", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/vlist.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/vlist", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/vlist.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/vlist", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/vlist.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/vlist", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/vlist.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/vlist", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/vlist.scm", {st_mode=S_IFREG|0444, st_size=22081, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/vlist.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/vlist.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/vlist.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/vlist.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/vlist.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/vlist.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/vlist.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/vlist.go", {st_mode=S_IFREG|0444, st_size=83776, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/vlist.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=83776, ...}) = 0
[pid 32619] mmap(NULL, 83776, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f79a7000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x1a3f000)              = 0x1a3f000
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-9/gnu.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-9/gnu", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-9/gnu.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-9/gnu", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-9/gnu.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-9/gnu", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-9/gnu.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-9/gnu", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-9/gnu.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-9/gnu", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-9/gnu.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-9/gnu", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-9/gnu.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-9/gnu", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-9/gnu.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-9/gnu", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/srfi/srfi-9/gnu.scm", {st_mode=S_IFREG|0444, st_size=6471, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-9/gnu.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-9/gnu.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-9/gnu.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-9/gnu.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-9/gnu.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-9/gnu.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-9/gnu.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-9/gnu.go", {st_mode=S_IFREG|0444, st_size=14273, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-9/gnu.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=14273, ...}) = 0
[pid 32619] mmap(NULL, 14273, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f79a3000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/format.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/format", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/format.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/format", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/format.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/format", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/format.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/format", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/format.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/format", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/format.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/format", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/format.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/format", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/format.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/format", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/format.scm", {st_mode=S_IFREG|0444, st_size=76284, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/format.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/format.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/format.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/format.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/format.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/format.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/format.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/format.go", {st_mode=S_IFREG|0444, st_size=78888, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/format.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=78888, ...}) = 0
[pid 32619] mmap(NULL, 78888, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f798f000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build/syscalls.scm", {st_mode=S_IFREG|0644, st_size=34787, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build/syscalls.go", {st_mode=S_IFREG|0644, st_size=85552, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/build/syscalls.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=85552, ...}) = 0
[pid 32619] mmap(NULL, 85552, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f797a000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/system/foreign.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/foreign", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/foreign.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/foreign", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/foreign.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/foreign", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/foreign.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/foreign", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/foreign.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/foreign", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/foreign.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/foreign", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/foreign.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/foreign", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/foreign.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/foreign", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/system/foreign.scm", {st_mode=S_IFREG|0444, st_size=6907, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/system/foreign.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/foreign.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/foreign.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/foreign.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/foreign.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/foreign.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/foreign.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/foreign.go", {st_mode=S_IFREG|0444, st_size=9995, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/foreign.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=9995, ...}) = 0
[pid 32619] mmap(NULL, 9995, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7977000
[pid 32619] close(7)                    = 0
[pid 32619] futex(0x7f08f66cc0c8, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 32619] uname({sys="Linux", node="izanagi", ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/store.scm", {st_mode=S_IFREG|0644, st_size=41678, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/store.go", {st_mode=S_IFREG|0644, st_size=147546, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/store.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=147546, ...}) = 0
[pid 32619] mmap(NULL, 147546, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7952000
[pid 32619] close(7)                    = 0
[pid 32619] open("/proc/self/statm", O_RDONLY) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
[pid 32619] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f7951000
[pid 32619] read(7, "16984 3364 1473 2 0 8151 0\n", 1024) = 27
[pid 32619] close(7)                    = 0
[pid 32619] munmap(0x7f08f7951000, 4096) = 0
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 86094774}) = 0
[pid 32619] rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 220) = 3
[pid 32621] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 222 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 221, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 225, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 224, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 228 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 223, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 229, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 230, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 230, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 231, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 231, NULL <unfinished ...>
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 90961794}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/serialization.scm", {st_mode=S_IFREG|0644, st_size=13018, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/serialization.go", {st_mode=S_IFREG|0644, st_size=19402, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/serialization.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=19402, ...}) = 0
[pid 32619] mmap(NULL, 19402, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f794d000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-34.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-34", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-34.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-34", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-34.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-34", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-34.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-34", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-34.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-34", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-34.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-34", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-34.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-34", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-34.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-34", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/srfi/srfi-34.scm", {st_mode=S_IFREG|0444, st_size=3276, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-34.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-34.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-34.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-34.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-34.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-34.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-34.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-34.go", {st_mode=S_IFREG|0444, st_size=5227, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-34.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=5227, ...}) = 0
[pid 32619] mmap(NULL, 5227, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f794b000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-35.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-35", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-35.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-35", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-35.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-35", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-35.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-35", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-35.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-35", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-35.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-35", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-35.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-35", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-35.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-35", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/srfi/srfi-35.scm", {st_mode=S_IFREG|0444, st_size=12269, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-35.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-35.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-35.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-35.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-35.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-35.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-35.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-35.go", {st_mode=S_IFREG|0444, st_size=18596, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-35.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=18596, ...}) = 0
[pid 32619] mmap(NULL, 18596, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7946000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/guix/monads.scm", {st_mode=S_IFREG|0644, st_size=13061, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/monads.go", {st_mode=S_IFREG|0644, st_size=64446, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/monads.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=64446, ...}) = 0
[pid 32619] mmap(NULL, 64446, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7936000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x1b1f000)              = 0x1b1f000
[pid 32619] stat("/home/dave/Code/guix/ice-9/popen.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/popen", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/popen.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/popen", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/popen.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/popen", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/popen.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/popen", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/popen.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/popen", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/popen.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/popen", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/popen.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/popen", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/popen.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/popen", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/popen.scm", {st_mode=S_IFREG|0444, st_size=5863, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/popen.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/popen.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/popen.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/popen.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/popen.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/popen.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/popen.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/popen.go", {st_mode=S_IFREG|0444, st_size=23310, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/popen.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=23310, ...}) = 0
[pid 32619] mmap(NULL, 23310, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7930000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/threads.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/threads", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/threads.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/threads", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/threads.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/threads", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/threads.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/threads", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/threads.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/threads", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/threads.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/threads", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/threads.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/threads", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/threads.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/threads", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/threads.scm", {st_mode=S_IFREG|0444, st_size=6388, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/threads.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/threads.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/threads.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/threads.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/threads.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/threads.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/threads.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/threads.go", {st_mode=S_IFREG|0444, st_size=12191, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/threads.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=12191, ...}) = 0
[pid 32619] mmap(NULL, 12191, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f792d000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x1b2f000)              = 0x1b2f000
[pid 32619] stat("/home/dave/Code/guix/ice-9/futures.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/futures", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/futures.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/futures", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/futures.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/futures", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/futures.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/futures", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/futures.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/futures", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/futures.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/futures", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/futures.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/futures", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/futures.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/futures", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/futures.scm", {st_mode=S_IFREG|0444, st_size=11186, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/futures.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/futures.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/futures.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/futures.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/futures.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/futures.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/futures.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/futures.go", {st_mode=S_IFREG|0444, st_size=46765, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/futures.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=46765, ...}) = 0
[pid 32619] mmap(NULL, 46765, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7921000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/q.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/q", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/q.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/q", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/q.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/q", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/q.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/q", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/q.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/q", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/q.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/q", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/q.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/q", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/q.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/q", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/q.scm", {st_mode=S_IFREG|0444, st_size=4297, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/q.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/q.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/q.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/q.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/q.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/q.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/q.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/q.go", {st_mode=S_IFREG|0444, st_size=3268, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/q.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=3268, ...}) = 0
[pid 32619] mmap(NULL, 3268, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f7920000
[pid 32619] close(7)                    = 0
[pid 32619] sched_getaffinity(0, 128, {f, 0, 0, 0}) = 32
[pid 32619] stat("/home/dave/Code/guix/guix/packages.scm", {st_mode=S_IFREG|0644, st_size=44502, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/packages.go", {st_mode=S_IFREG|0644, st_size=202229, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/packages.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=202229, ...}) = 0
[pid 32619] mmap(NULL, 202229, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3fa0000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/guix/records.scm", {st_mode=S_IFREG|0644, st_size=15364, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/records.go", {st_mode=S_IFREG|0644, st_size=29320, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/records.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=29320, ...}) = 0
[pid 32619] mmap(NULL, 29320, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3f98000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x1c2f000)              = 0x1c2f000
[pid 32619] stat("/home/dave/Code/guix/guix/gexp.scm", {st_mode=S_IFREG|0644, st_size=37580, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/gexp.go", {st_mode=S_IFREG|0644, st_size=139320, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/gexp.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=139320, ...}) = 0
[pid 32619] mmap(NULL, 139320, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3f75000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x1c3f000)              = 0x1c3f000
[pid 32619] stat("/home/dave/Code/guix/guix/derivations.scm", {st_mode=S_IFREG|0644, st_size=57495, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/derivations.go", {st_mode=S_IFREG|0644, st_size=167998, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/derivations.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=167998, ...}) = 0
[pid 32619] mmap(NULL, 167998, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3f4b000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/guix/hash.scm", {st_mode=S_IFREG|0644, st_size=5005, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/hash.go", {st_mode=S_IFREG|0644, st_size=7179, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/hash.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=7179, ...}) = 0
[pid 32619] mmap(NULL, 7179, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f791e000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/guix/gcrypt.scm", {st_mode=S_IFREG|0644, st_size=1776, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/gcrypt.go", {st_mode=S_IFREG|0644, st_size=1447, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/gcrypt.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=1447, ...}) = 0
[pid 32619] mmap(NULL, 1447, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f791d000
[pid 32619] close(7)                    = 0
[pid 32619] open("/gnu/store/rlb4kpnk5jyvwndxqn4f45vmj5jddmsa-libgcrypt-1.6.3/lib/libgcrypt.la", O_RDONLY) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0555, st_size=1138, ...}) = 0
[pid 32619] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f791c000
[pid 32619] read(7, "# libgcrypt.la - a libtool libra"..., 4096) = 1138
[pid 32619] read(7, "", 4096)           = 0
[pid 32619] close(7)                    = 0
[pid 32619] munmap(0x7f08f791c000, 4096) = 0
[pid 32619] open("/gnu/store/rlb4kpnk5jyvwndxqn4f45vmj5jddmsa-libgcrypt-1.6.3/lib/libgcrypt.so.20", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\215\0\0\0\0\0\0"..., 832) = 832
[pid 32619] fstat(7, {st_mode=S_IFREG|0555, st_size=981416, ...}) = 0
[pid 32619] mmap(NULL, 3005408, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7f08f3c6d000
[pid 32619] mprotect(0x7f08f3d42000, 2093056, PROT_NONE) = 0
[pid 32619] mmap(0x7f08f3f41000, 40960, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0xd4000) = 0x7f08f3f41000
[pid 32619] close(7)                    = 0
[pid 32619] open("/gnu/store/a1mj9ai8xx1a7pq1c05h01ds8xdpmd7n-libgpg-error-1.19/lib/tls/x86_64/libgpg-error.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/a1mj9ai8xx1a7pq1c05h01ds8xdpmd7n-libgpg-error-1.19/lib/tls/x86_64", 0x7ffe14eb02a0) = -1 ENOENT (No such file or directory)
[pid 32619] open("/gnu/store/a1mj9ai8xx1a7pq1c05h01ds8xdpmd7n-libgpg-error-1.19/lib/tls/libgpg-error.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/a1mj9ai8xx1a7pq1c05h01ds8xdpmd7n-libgpg-error-1.19/lib/tls", 0x7ffe14eb02a0) = -1 ENOENT (No such file or directory)
[pid 32619] open("/gnu/store/a1mj9ai8xx1a7pq1c05h01ds8xdpmd7n-libgpg-error-1.19/lib/x86_64/libgpg-error.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/a1mj9ai8xx1a7pq1c05h01ds8xdpmd7n-libgpg-error-1.19/lib/x86_64", 0x7ffe14eb02a0) = -1 ENOENT (No such file or directory)
[pid 32619] open("/gnu/store/a1mj9ai8xx1a7pq1c05h01ds8xdpmd7n-libgpg-error-1.19/lib/libgpg-error.so.0", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@(\0\0\0\0\0\0"..., 832) = 832
[pid 32619] fstat(7, {st_mode=S_IFREG|0555, st_size=87544, ...}) = 0
[pid 32619] mmap(NULL, 2168080, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7f08f3a5b000
[pid 32619] mprotect(0x7f08f3a6c000, 2097152, PROT_NONE) = 0
[pid 32619] mmap(0x7f08f3c6c000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x11000) = 0x7f08f3c6c000
[pid 32619] close(7)                    = 0
[pid 32619] access("/etc/gcrypt/fips_enabled", F_OK) = -1 ENOENT (No such file or directory)
[pid 32619] open("/proc/sys/crypto/fips_enabled", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 32619] open("/etc/gcrypt/hwf.deny", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/guix/base32.scm", {st_mode=S_IFREG|0644, st_size=13079, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/base32.go", {st_mode=S_IFREG|0644, st_size=22704, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/base32.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=22704, ...}) = 0
[pid 32619] mmap(NULL, 22704, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3a55000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/guix/sets.scm", {st_mode=S_IFREG|0644, st_size=3610, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/sets.go", {st_mode=S_IFREG|0644, st_size=28517, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/sets.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=28517, ...}) = 0
[pid 32619] mmap(NULL, 28517, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3a4e000
[pid 32619] close(7)                    = 0
[pid 32619] open("/proc/self/statm", O_RDONLY) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
[pid 32619] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f791c000
[pid 32619] read(7, "18961 4135 1754 2 0 8663 0\n", 1024) = 27
[pid 32619] close(7)                    = 0
[pid 32619] munmap(0x7f08f791c000, 4096) = 0
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 105624693}) = 0
[pid 32619] rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 234) = 3
[pid 32621] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 236) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 238 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 239, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 235, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 237, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 240, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 242 <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 244 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 243, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 245, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 246, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 250 <unfinished ...>
[pid 32619] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 247, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 1
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 251, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 252 <unfinished ...>
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 1
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 253, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 254, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 255, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 255, NULL <unfinished ...>
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 114033733}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build/utils.scm", {st_mode=S_IFREG|0644, st_size=39810, ...}) = 0
[pid 32619] lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave/Code", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave/Code/guix", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave/Code/guix/guix", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave/Code/guix/guix/build", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] lstat("/home/dave/Code/guix/guix/build/utils.scm", {st_mode=S_IFREG|0644, st_size=39810, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system.scm", {st_mode=S_IFREG|0644, st_size=3910, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system.go", {st_mode=S_IFREG|0644, st_size=71687, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/build-system.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=71687, ...}) = 0
[pid 32619] mmap(NULL, 71687, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3a3c000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x1c4f000)              = 0x1c4f000
[pid 32619] stat("/home/dave/Code/guix/guix/search-paths.scm", {st_mode=S_IFREG|0644, st_size=7924, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/search-paths.go", {st_mode=S_IFREG|0644, st_size=44450, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/search-paths.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=44450, ...}) = 0
[pid 32619] mmap(NULL, 44450, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3a31000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x1d73000)              = 0x1d73000
[pid 32619] stat("/home/dave/Code/guix/web/uri.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/web/uri", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/web/uri.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/web/uri", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/uri.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/uri", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/uri.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/uri", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/uri.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/uri", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/uri.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/uri", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/web/uri.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/web/uri", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/web/uri.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/web/uri", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/web/uri.scm", {st_mode=S_IFREG|0444, st_size=15060, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/web/uri.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/uri.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/uri.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/uri.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/uri.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/web/uri.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/web/uri.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/web/uri.go", {st_mode=S_IFREG|0444, st_size=58371, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/web/uri.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=58371, ...}) = 0
[pid 32619] mmap(NULL, 58371, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3a22000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x1d9a000)              = 0x1d9a000
[pid 32619] brk(0x1d9c000)              = 0x1d9c000
[pid 32619] brk(0x1d9b000)              = 0x1d9b000
[pid 32619] brk(0x1d94000)              = 0x1d94000
[pid 32619] brk(0x1dbb000)              = 0x1dbb000
[pid 32619] brk(0x1db3000)              = 0x1db3000
[pid 32619] stat("/home/dave/Code/guix/guix/profiles.scm", {st_mode=S_IFREG|0644, st_size=32212, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/profiles.go", {st_mode=S_IFREG|0644, st_size=129174, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/profiles.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=129174, ...}) = 0
[pid 32619] mmap(NULL, 129174, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3a02000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-19.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-19", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-19.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-19", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-19.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-19", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-19.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-19", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-19.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-19", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-19.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-19", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-19.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-19", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-19.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-19", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/srfi/srfi-19.scm", {st_mode=S_IFREG|0444, st_size=57273, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-19.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-19.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-19.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-19.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-19.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-19.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-19.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-19.go", {st_mode=S_IFREG|0444, st_size=139635, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-19.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=139635, ...}) = 0
[pid 32619] mmap(NULL, 139635, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f39df000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-6.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-6", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-6.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-6", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-6.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-6", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-6.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-6", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-6.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-6", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-6.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-6", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-6.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-6", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-6.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-6", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/srfi/srfi-6.scm", {st_mode=S_IFREG|0444, st_size=1594, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-6.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-6.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-6.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-6.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-6.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-6.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-6.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-6.go", {st_mode=S_IFREG|0444, st_size=1143, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-6.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=1143, ...}) = 0
[pid 32619] mmap(NULL, 1143, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f791c000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/i18n.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/i18n", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/i18n.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/i18n", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/i18n.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/i18n", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/i18n.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/i18n", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/i18n.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/i18n", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/i18n.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/i18n", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/i18n.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/i18n", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/i18n.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/i18n", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/i18n.scm", {st_mode=S_IFREG|0444, st_size=16128, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/i18n.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/i18n.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/i18n.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/i18n.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/i18n.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/i18n.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/i18n.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/i18n.go", {st_mode=S_IFREG|0444, st_size=19654, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/i18n.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=19654, ...}) = 0
[pid 32619] mmap(NULL, 19654, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f39da000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x1dc3000)              = 0x1dc3000
[pid 32619] stat("/home/dave/Code/guix/guix/licenses.scm", {st_mode=S_IFREG|0644, st_size=13510, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/licenses.go", {st_mode=S_IFREG|0644, st_size=33971, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/licenses.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=33971, ...}) = 0
[pid 32619] mmap(NULL, 33971, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f39d1000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x1f11000)              = 0x1f11000
[pid 32619] stat("/home/dave/Code/guix/gnu/system/file-systems.scm", {st_mode=S_IFREG|0644, st_size=12197, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/system/file-systems.go", {st_mode=S_IFREG|0644, st_size=123318, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/system/file-systems.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=123318, ...}) = 0
[pid 32619] mmap(NULL, 123318, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f39b2000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/build/file-systems.scm", {st_mode=S_IFREG|0644, st_size=13138, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/build/file-systems.go", {st_mode=S_IFREG|0644, st_size=22796, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/build/file-systems.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0644, st_size=22796, ...}) = 0
[pid 32619] mmap(NULL, 22796, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f39ac000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x1f33000)              = 0x1f33000
[pid 32619] brk(0x1f3a000)              = 0x1f3a000
[pid 32619] brk(0x1f32000)              = 0x1f32000
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-31.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-31", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-31.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-31", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-31.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-31", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-31.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-31", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-31.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-31", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-31.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-31", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-31.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-31", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-31.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-31", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/srfi/srfi-31.scm", {st_mode=S_IFREG|0444, st_size=1395, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-31.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-31.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-31.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-31.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-31.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-31.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-31.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-31.go", {st_mode=S_IFREG|0444, st_size=2396, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-31.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=2396, ...}) = 0
[pid 32619] mmap(NULL, 2396, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f791b000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/texinfo.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/texinfo", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/texinfo.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/texinfo", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/texinfo.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/texinfo", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/texinfo.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/texinfo", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/texinfo.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/texinfo", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/texinfo.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/texinfo", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/texinfo.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/texinfo", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/texinfo.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/texinfo", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/texinfo.scm", {st_mode=S_IFREG|0444, st_size=52316, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/texinfo.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/texinfo.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/texinfo.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/texinfo.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/texinfo.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/texinfo.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/texinfo.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/texinfo.go", {st_mode=S_IFREG|0444, st_size=44344, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/texinfo.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=44344, ...}) = 0
[pid 32619] mmap(NULL, 44344, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f39a1000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x1f42000)              = 0x1f42000
[pid 32619] stat("/home/dave/Code/guix/sxml/simple.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/sxml/simple", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/sxml/simple.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/sxml/simple", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/simple.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/simple", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/simple.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/simple", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/simple.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/simple", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/simple.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/simple", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/sxml/simple.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/sxml/simple", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/sxml/simple.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/sxml/simple", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/sxml/simple.scm", {st_mode=S_IFREG|0444, st_size=14218, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/sxml/simple.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/simple.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/simple.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/simple.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/simple.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/sxml/simple.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/sxml/simple.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/sxml/simple.go", {st_mode=S_IFREG|0444, st_size=20700, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/sxml/simple.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=20700, ...}) = 0
[pid 32619] mmap(NULL, 20700, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f399b000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/sxml/ssax/input-parse.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/sxml/ssax/input-parse", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/sxml/ssax/input-parse.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/sxml/ssax/input-parse", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/ssax/input-parse.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/ssax/input-parse", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/ssax/input-parse.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/ssax/input-parse", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/ssax/input-parse.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/ssax/input-parse", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/ssax/input-parse.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/ssax/input-parse", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/sxml/ssax/input-parse.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/sxml/ssax/input-parse", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/sxml/ssax/input-parse.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/sxml/ssax/input-parse", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/sxml/ssax/input-parse.scm", {st_mode=S_IFREG|0444, st_size=7932, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/sxml/ssax/input-parse.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/ssax/input-parse.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/ssax/input-parse.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/ssax/input-parse.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/ssax/input-parse.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/sxml/ssax/input-parse.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/sxml/ssax/input-parse.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/sxml/ssax/input-parse.go", {st_mode=S_IFREG|0444, st_size=12805, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/sxml/ssax/input-parse.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=12805, ...}) = 0
[pid 32619] mmap(NULL, 12805, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3997000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/sxml/ssax.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/sxml/ssax", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/sxml/ssax.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/sxml/ssax", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/ssax.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/ssax", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/ssax.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/ssax", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/ssax.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/ssax", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/ssax.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/ssax", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/sxml/ssax.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/sxml/ssax", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/sxml/ssax.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/sxml/ssax", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/sxml/ssax.scm", {st_mode=S_IFREG|0444, st_size=11011, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/sxml/ssax.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/ssax.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/ssax.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/ssax.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/ssax.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/sxml/ssax.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/sxml/ssax.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/sxml/ssax.go", {st_mode=S_IFREG|0444, st_size=71594, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/sxml/ssax.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=71594, ...}) = 0
[pid 32619] mmap(NULL, 71594, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3985000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/sxml/transform.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/sxml/transform", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/sxml/transform.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/sxml/transform", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/transform.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/transform", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/transform.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/transform", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/transform.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/transform", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/transform.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/transform", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/sxml/transform.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/sxml/transform", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/sxml/transform.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/sxml/transform", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/sxml/transform.scm", {st_mode=S_IFREG|0444, st_size=12117, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/sxml/transform.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/transform.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/transform.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/sxml/transform.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/sxml/transform.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/sxml/transform.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/sxml/transform.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/sxml/transform.go", {st_mode=S_IFREG|0444, st_size=7044, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/sxml/transform.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=7044, ...}) = 0
[pid 32619] mmap(NULL, 7044, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3983000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/texinfo/plain-text.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/texinfo/plain-text", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/texinfo/plain-text.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/texinfo/plain-text", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/texinfo/plain-text.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/texinfo/plain-text", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/texinfo/plain-text.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/texinfo/plain-text", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/texinfo/plain-text.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/texinfo/plain-text", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/texinfo/plain-text.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/texinfo/plain-text", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/texinfo/plain-text.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/texinfo/plain-text", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/texinfo/plain-text.scm", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/texinfo/plain-text", 0x7ffe14eb1e90) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/texinfo/plain-text.scm", {st_mode=S_IFREG|0444, st_size=9508, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/texinfo/plain-text.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/texinfo/plain-text.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/texinfo/plain-text.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/texinfo/plain-text.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/texinfo/plain-text.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/texinfo/plain-text.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/texinfo/plain-text.go", 0x7ffe14eb1f20) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/texinfo/plain-text.go", {st_mode=S_IFREG|0444, st_size=16930, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/texinfo/plain-text.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=16930, ...}) = 0
[pid 32619] mmap(NULL, 16930, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f397e000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/texinfo/string-utils.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/texinfo/string-utils", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/texinfo/string-utils.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/texinfo/string-utils", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/texinfo/string-utils.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/texinfo/string-utils", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/texinfo/string-utils.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/texinfo/string-utils", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/texinfo/string-utils.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/texinfo/string-utils", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/texinfo/string-utils.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/texinfo/string-utils", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/texinfo/string-utils.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/texinfo/string-utils", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/texinfo/string-utils.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/texinfo/string-utils", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/texinfo/string-utils.scm", {st_mode=S_IFREG|0444, st_size=16633, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/texinfo/string-utils.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/texinfo/string-utils.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/texinfo/string-utils.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/texinfo/string-utils.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/texinfo/string-utils.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/texinfo/string-utils.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/texinfo/string-utils.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/texinfo/string-utils.go", {st_mode=S_IFREG|0444, st_size=16839, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/texinfo/string-utils.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=16839, ...}) = 0
[pid 32619] mmap(NULL, 16839, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3979000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-14.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-14", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-14.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-14", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-14.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-14", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-14.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-14", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-14.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-14", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-14.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-14", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-14.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-14", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-14.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-14", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/srfi/srfi-14.scm", {st_mode=S_IFREG|0444, st_size=2386, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-14.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-14.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-14.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-14.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-14.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-14.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-14.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-14.go", {st_mode=S_IFREG|0444, st_size=2503, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-14.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=2503, ...}) = 0
[pid 32619] mmap(NULL, 2503, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f791a000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/oop/goops.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/oop/goops", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/oop/goops.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/oop/goops", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/oop/goops.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/oop/goops", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/oop/goops.scm", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/oop/goops", 0x7ffe14eb1870) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/oop/goops.scm", {st_mode=S_IFREG|0444, st_size=53694, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/oop/goops.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/oop/goops.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/oop/goops.go", 0x7ffe14eb1900) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/oop/goops.go", {st_mode=S_IFREG|0444, st_size=105407, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/oop/goops.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=105407, ...}) = 0
[pid 32619] mmap(NULL, 105407, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f395f000
[pid 32619] close(7)                    = 0
[pid 32619] open("/proc/self/statm", O_RDONLY) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
[pid 32619] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f395e000
[pid 32619] read(7, "19974 5078 2018 2 0 9434 0\n", 1024) = 27
[pid 32619] close(7)                    = 0
[pid 32619] munmap(0x7f08f395e000, 4096) = 0
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 134111646}) = 0
[pid 32619] rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 258) = 3
[pid 32621] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 260 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 259, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 262 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 261, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 264 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 263, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 266 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 265, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 268, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 270 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 267, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 271, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 272 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 274 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 273, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 275, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 276 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 277, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 278, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 279, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 279, NULL <unfinished ...>
[pid 32620] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 282 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 3
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 283, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 284 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 285, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 286, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 2
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 288 <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 289, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 290, NULL <unfinished ...>
[pid 32620] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 291, NULL <unfinished ...>
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 145689374}) = 0
[pid 32619] stat("/home/dave/Code/guix/oop/goops/dispatch.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/oop/goops/dispatch", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/oop/goops/dispatch.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/oop/goops/dispatch", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops/dispatch.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops/dispatch", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops/dispatch.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops/dispatch", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops/dispatch.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops/dispatch", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops/dispatch.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops/dispatch", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/oop/goops/dispatch.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/oop/goops/dispatch", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/oop/goops/dispatch.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/oop/goops/dispatch", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/oop/goops/dispatch.scm", {st_mode=S_IFREG|0444, st_size=10641, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/oop/goops/dispatch.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops/dispatch.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops/dispatch.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops/dispatch.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops/dispatch.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/oop/goops/dispatch.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/oop/goops/dispatch.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/oop/goops/dispatch.go", {st_mode=S_IFREG|0444, st_size=10332, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/oop/goops/dispatch.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=10332, ...}) = 0
[pid 32619] mmap(NULL, 10332, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f395c000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/oop/goops/util.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/oop/goops/util", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/oop/goops/util.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/oop/goops/util", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops/util.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops/util", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops/util.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops/util", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops/util.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops/util", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops/util.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops/util", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/oop/goops/util.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/oop/goops/util", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/oop/goops/util.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/oop/goops/util", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/oop/goops/util.scm", {st_mode=S_IFREG|0444, st_size=2273, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/oop/goops/util.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops/util.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops/util.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops/util.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops/util.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/oop/goops/util.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/oop/goops/util.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/oop/goops/util.go", {st_mode=S_IFREG|0444, st_size=3023, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/oop/goops/util.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=3023, ...}) = 0
[pid 32619] mmap(NULL, 3023, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f395b000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x20c0000)              = 0x20c0000
[pid 32619] stat("/home/dave/Code/guix/oop/goops/compile.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/oop/goops/compile", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/oop/goops/compile.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/oop/goops/compile", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops/compile.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops/compile", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops/compile.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops/compile", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops/compile.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops/compile", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops/compile.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops/compile", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/oop/goops/compile.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/oop/goops/compile", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/oop/goops/compile.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/oop/goops/compile", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/oop/goops/compile.scm", {st_mode=S_IFREG|0444, st_size=2162, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/oop/goops/compile.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops/compile.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops/compile.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/oop/goops/compile.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/oop/goops/compile.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/oop/goops/compile.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/oop/goops/compile.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/oop/goops/compile.go", {st_mode=S_IFREG|0444, st_size=1251, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/oop/goops/compile.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=1251, ...}) = 0
[pid 32619] mmap(NULL, 1251, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f395a000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/system/base/target.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/target", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/target.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/target", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/target.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/target", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/target.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/target", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/target.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/target", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/target.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/target", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/target.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/target", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/target.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/target", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/system/base/target.scm", {st_mode=S_IFREG|0444, st_size=5089, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/system/base/target.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/target.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/target.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/target.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/target.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/target.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/target.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/base/target.go", {st_mode=S_IFREG|0444, st_size=6476, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/base/target.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=6476, ...}) = 0
[pid 32619] mmap(NULL, 6476, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3958000
[pid 32619] close(7)                    = 0
[pid 32619] futex(0x7f08f78ecd40, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/primitives.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/primitives", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/primitives.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/primitives", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/primitives.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/primitives", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/primitives.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/primitives", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/primitives.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/primitives", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/primitives.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/primitives", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/primitives.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/primitives", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/primitives.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/primitives", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/tree-il/primitives.scm", {st_mode=S_IFREG|0444, st_size=23074, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/primitives.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/primitives.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/primitives.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/primitives.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/primitives.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/primitives.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/primitives.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/primitives.go", {st_mode=S_IFREG|0444, st_size=46908, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/primitives.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=46908, ...}) = 0
[pid 32619] mmap(NULL, 46908, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f394c000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x20d0000)              = 0x20d0000
[pid 32619] stat("/home/dave/Code/guix/system/base/syntax.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/syntax", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/syntax.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/syntax", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/syntax.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/syntax", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/syntax.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/syntax", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/syntax.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/syntax", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/syntax.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/syntax", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/syntax.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/syntax", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/syntax.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/syntax", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/system/base/syntax.scm", {st_mode=S_IFREG|0444, st_size=14305, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/system/base/syntax.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/syntax.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/syntax.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/syntax.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/syntax.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/syntax.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/syntax.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/base/syntax.go", {st_mode=S_IFREG|0444, st_size=19876, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/base/syntax.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=19876, ...}) = 0
[pid 32619] mmap(NULL, 19876, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3947000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/tree-il.scm", {st_mode=S_IFREG|0444, st_size=27300, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il.go", {st_mode=S_IFREG|0444, st_size=75297, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=75297, ...}) = 0
[pid 32619] mmap(NULL, 75297, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3934000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-16.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-16", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-16.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-16", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-16.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-16", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-16.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-16", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-16.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-16", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-16.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-16", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-16.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-16", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-16.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-16", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/srfi/srfi-16.scm", {st_mode=S_IFREG|0444, st_size=1883, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-16.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-16.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-16.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-16.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-16.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-16.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-16.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-16.go", {st_mode=S_IFREG|0444, st_size=452, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-16.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=452, ...}) = 0
[pid 32619] mmap(NULL, 452, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3933000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/system/base/compile.scm", 0x7ffe14eb13a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/compile", 0x7ffe14eb13a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/compile.scm", 0x7ffe14eb13a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/compile", 0x7ffe14eb13a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/compile.scm", 0x7ffe14eb13a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/compile", 0x7ffe14eb13a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/compile.scm", 0x7ffe14eb13a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/compile", 0x7ffe14eb13a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/compile.scm", 0x7ffe14eb13a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/compile", 0x7ffe14eb13a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/compile.scm", 0x7ffe14eb13a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/compile", 0x7ffe14eb13a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/compile.scm", 0x7ffe14eb13a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/compile", 0x7ffe14eb13a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/compile.scm", 0x7ffe14eb13a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/compile", 0x7ffe14eb13a0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/system/base/compile.scm", {st_mode=S_IFREG|0444, st_size=10046, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/system/base/compile.go", 0x7ffe14eb1430) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/compile.go", 0x7ffe14eb1430) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/compile.go", 0x7ffe14eb1430) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/compile.go", 0x7ffe14eb1430) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/compile.go", 0x7ffe14eb1430) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/compile.go", 0x7ffe14eb1430) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/compile.go", 0x7ffe14eb1430) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/base/compile.go", {st_mode=S_IFREG|0444, st_size=13985, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/base/compile.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=13985, ...}) = 0
[pid 32619] mmap(NULL, 13985, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f392f000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/system/base/language.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/language", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/language.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/language", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/language.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/language", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/language.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/language", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/language.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/language", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/language.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/language", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/language.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/language", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/language.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/language", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/system/base/language.scm", {st_mode=S_IFREG|0444, st_size=3799, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/system/base/language.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/language.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/language.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/language.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/language.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/language.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/language.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/base/language.go", {st_mode=S_IFREG|0444, st_size=6052, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/base/language.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=6052, ...}) = 0
[pid 32619] mmap(NULL, 6052, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f392d000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/system/base/message.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/message", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/message.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/base/message", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/message.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/message", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/message.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/message", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/message.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/message", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/message.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/message", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/message.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/message", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/message.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/message", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/system/base/message.scm", {st_mode=S_IFREG|0444, st_size=8907, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/system/base/message.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/message.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/message.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/base/message.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/base/message.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/base/message.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/base/message.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/base/message.go", {st_mode=S_IFREG|0444, st_size=30944, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/base/message.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=30944, ...}) = 0
[pid 32619] mmap(NULL, 30944, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3925000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/system/vm/vm.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/vm/vm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/vm/vm.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/vm/vm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/vm.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/vm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/vm.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/vm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/vm.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/vm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/vm.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/vm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/vm/vm.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/vm/vm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/vm/vm.scm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/vm/vm", 0x7ffe14eb1090) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/system/vm/vm.scm", {st_mode=S_IFREG|0444, st_size=1355, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/system/vm/vm.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/vm.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/vm.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/vm.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/vm.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/vm/vm.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/vm/vm.go", 0x7ffe14eb1120) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/vm/vm.go", {st_mode=S_IFREG|0444, st_size=1060, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/vm/vm.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=1060, ...}) = 0
[pid 32619] mmap(NULL, 1060, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3924000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/language/value/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/value/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/value/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/value/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/value/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/value/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/value/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/value/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/value/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/value/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/value/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/value/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/value/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/value/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/value/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/value/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/value/spec.scm", {st_mode=S_IFREG|0444, st_size=1078, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/value/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/value/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/value/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/value/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/value/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/value/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/value/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/value/spec.go", {st_mode=S_IFREG|0444, st_size=794, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/value/spec.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=794, ...}) = 0
[pid 32619] mmap(NULL, 794, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3923000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x20e0000)              = 0x20e0000
[pid 32619] stat("/home/dave/Code/guix/language/scheme/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/scheme/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/scheme/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/scheme/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/scheme/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/scheme/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/scheme/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/scheme/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/scheme/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/scheme/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/scheme/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/scheme/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/scheme/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/scheme/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/scheme/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/scheme/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/scheme/spec.scm", {st_mode=S_IFREG|0444, st_size=2654, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/scheme/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/scheme/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/scheme/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/scheme/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/scheme/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/scheme/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/scheme/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/scheme/spec.go", {st_mode=S_IFREG|0444, st_size=2007, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/scheme/spec.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=2007, ...}) = 0
[pid 32619] mmap(NULL, 2007, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3922000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/language/scheme/compile-tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/scheme/compile-tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/scheme/compile-tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/scheme/compile-tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/scheme/compile-tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/scheme/compile-tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/scheme/compile-tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/scheme/compile-tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/scheme/compile-tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/scheme/compile-tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/scheme/compile-tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/scheme/compile-tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/scheme/compile-tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/scheme/compile-tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/scheme/compile-tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/scheme/compile-tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/scheme/compile-tree-il.scm", {st_mode=S_IFREG|0444, st_size=1243, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/scheme/compile-tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/scheme/compile-tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/scheme/compile-tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/scheme/compile-tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/scheme/compile-tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/scheme/compile-tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/scheme/compile-tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/scheme/compile-tree-il.go", {st_mode=S_IFREG|0444, st_size=1193, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/scheme/compile-tree-il.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=1193, ...}) = 0
[pid 32619] mmap(NULL, 1193, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3921000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/language/scheme/decompile-tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/scheme/decompile-tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/scheme/decompile-tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/scheme/decompile-tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/scheme/decompile-tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/scheme/decompile-tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/scheme/decompile-tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/scheme/decompile-tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/scheme/decompile-tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/scheme/decompile-tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/scheme/decompile-tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/scheme/decompile-tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/scheme/decompile-tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/scheme/decompile-tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/scheme/decompile-tree-il.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/scheme/decompile-tree-il", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/scheme/decompile-tree-il.scm", {st_mode=S_IFREG|0444, st_size=33501, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/scheme/decompile-tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/scheme/decompile-tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/scheme/decompile-tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/scheme/decompile-tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/scheme/decompile-tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/scheme/decompile-tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/scheme/decompile-tree-il.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/scheme/decompile-tree-il.go", {st_mode=S_IFREG|0444, st_size=66290, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/scheme/decompile-tree-il.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=66290, ...}) = 0
[pid 32619] mmap(NULL, 66290, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3910000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/tree-il/spec.scm", {st_mode=S_IFREG|0444, st_size=1566, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/spec.go", {st_mode=S_IFREG|0444, st_size=1817, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/spec.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=1817, ...}) = 0
[pid 32619] mmap(NULL, 1817, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f390f000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/language/glil.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/glil", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/glil.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/glil", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/glil.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/glil", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/glil.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/glil", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/glil.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/glil", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/glil.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/glil", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/glil.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/glil", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/glil.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/glil", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/glil.scm", {st_mode=S_IFREG|0444, st_size=6308, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/glil.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/glil.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/glil.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/glil.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/glil.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/glil.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/glil.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/glil.go", {st_mode=S_IFREG|0444, st_size=18200, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/glil.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=18200, ...}) = 0
[pid 32619] mmap(NULL, 18200, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f390a000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/compile-glil.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/compile-glil", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/compile-glil.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/compile-glil", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/compile-glil.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/compile-glil", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/compile-glil.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/compile-glil", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/compile-glil.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/compile-glil", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/compile-glil.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/compile-glil", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/compile-glil.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/compile-glil", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/compile-glil.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/compile-glil", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/tree-il/compile-glil.scm", {st_mode=S_IFREG|0444, st_size=49680, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/compile-glil.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/compile-glil.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/compile-glil.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/compile-glil.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/compile-glil.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/compile-glil.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/compile-glil.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/compile-glil.go", {st_mode=S_IFREG|0444, st_size=63272, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/compile-glil.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=63272, ...}) = 0
[pid 32619] mmap(NULL, 63272, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f38fa000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/system/vm/instruction.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/vm/instruction", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/vm/instruction.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/vm/instruction", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/instruction.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/instruction", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/instruction.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/instruction", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/instruction.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/instruction", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/instruction.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/instruction", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/vm/instruction.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/vm/instruction", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/vm/instruction.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/vm/instruction", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/system/vm/instruction.scm", {st_mode=S_IFREG|0444, st_size=1166, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/system/vm/instruction.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/instruction.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/instruction.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/instruction.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/instruction.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/vm/instruction.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/vm/instruction.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/vm/instruction.go", {st_mode=S_IFREG|0444, st_size=845, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/vm/instruction.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=845, ...}) = 0
[pid 32619] mmap(NULL, 845, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f38f9000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x2294000)              = 0x2294000
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/optimize.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/optimize", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/optimize.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/optimize", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/optimize.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/optimize", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/optimize.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/optimize", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/optimize.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/optimize", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/optimize.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/optimize", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/optimize.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/optimize", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/optimize.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/optimize", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/tree-il/optimize.scm", {st_mode=S_IFREG|0444, st_size=1770, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/optimize.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/optimize.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/optimize.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/optimize.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/optimize.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/optimize.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/optimize.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/optimize.go", {st_mode=S_IFREG|0444, st_size=2027, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/optimize.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=2027, ...}) = 0
[pid 32619] mmap(NULL, 2027, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f38f8000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/peval.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/peval", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/peval.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/peval", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/peval.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/peval", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/peval.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/peval", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/peval.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/peval", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/peval.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/peval", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/peval.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/peval", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/peval.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/peval", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/tree-il/peval.scm", {st_mode=S_IFREG|0444, st_size=64675, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/peval.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/peval.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/peval.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/peval.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/peval.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/peval.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/peval.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/peval.go", {st_mode=S_IFREG|0444, st_size=181680, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/peval.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=181680, ...}) = 0
[pid 32619] mmap(NULL, 181680, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f38cb000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/effects.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/effects", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/effects.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/effects", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/effects.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/effects", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/effects.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/effects", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/effects.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/effects", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/effects.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/effects", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/effects.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/effects", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/effects.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/effects", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/tree-il/effects.scm", {st_mode=S_IFREG|0444, st_size=14845, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/effects.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/effects.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/effects.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/effects.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/effects.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/effects.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/effects.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/effects.go", {st_mode=S_IFREG|0444, st_size=44372, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/effects.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=44372, ...}) = 0
[pid 32619] mmap(NULL, 44372, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f38c0000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x22a4000)              = 0x22a4000
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/cse.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/cse", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/cse.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/cse", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/cse.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/cse", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/cse.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/cse", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/cse.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/cse", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/cse.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/cse", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/cse.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/cse", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/cse.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/cse", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/tree-il/cse.scm", {st_mode=S_IFREG|0444, st_size=23900, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/cse.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/cse.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/cse.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/cse.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/cse.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/cse.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/cse.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/cse.go", {st_mode=S_IFREG|0444, st_size=44887, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/cse.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=44887, ...}) = 0
[pid 32619] mmap(NULL, 44887, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f38b5000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/fix-letrec.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/fix-letrec", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/fix-letrec.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/fix-letrec", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/fix-letrec.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/fix-letrec", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/fix-letrec.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/fix-letrec", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/fix-letrec.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/fix-letrec", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/fix-letrec.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/fix-letrec", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/fix-letrec.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/fix-letrec", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/fix-letrec.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/fix-letrec", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/tree-il/fix-letrec.scm", {st_mode=S_IFREG|0444, st_size=13783, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/fix-letrec.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/fix-letrec.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/fix-letrec.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/fix-letrec.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/fix-letrec.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/fix-letrec.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/fix-letrec.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/fix-letrec.go", {st_mode=S_IFREG|0444, st_size=19783, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/fix-letrec.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=19783, ...}) = 0
[pid 32619] mmap(NULL, 19783, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f38b0000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/debug.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/debug", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/debug.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/debug", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/debug.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/debug", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/debug.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/debug", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/debug.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/debug", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/debug.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/debug", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/debug.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/debug", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/debug.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/debug", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/tree-il/debug.scm", {st_mode=S_IFREG|0444, st_size=10095, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/debug.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/debug.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/debug.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/debug.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/debug.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/debug.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/debug.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/debug.go", {st_mode=S_IFREG|0444, st_size=15056, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/debug.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=15056, ...}) = 0
[pid 32619] mmap(NULL, 15056, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f38ac000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/canonicalize.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/canonicalize", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/canonicalize.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/canonicalize", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/canonicalize.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/canonicalize", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/canonicalize.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/canonicalize", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/canonicalize.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/canonicalize", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/canonicalize.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/canonicalize", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/canonicalize.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/canonicalize", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/canonicalize.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/canonicalize", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/tree-il/canonicalize.scm", {st_mode=S_IFREG|0444, st_size=3699, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/canonicalize.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/canonicalize.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/canonicalize.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/canonicalize.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/canonicalize.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/canonicalize.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/canonicalize.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/canonicalize.go", {st_mode=S_IFREG|0444, st_size=4815, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/canonicalize.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=4815, ...}) = 0
[pid 32619] mmap(NULL, 4815, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f38aa000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/analyze.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/analyze", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/analyze.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/analyze", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/analyze.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/analyze", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/analyze.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/analyze", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/analyze.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/analyze", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/analyze.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/analyze", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/analyze.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/analyze", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/analyze.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/analyze", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/tree-il/analyze.scm", {st_mode=S_IFREG|0444, st_size=61146, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/tree-il/analyze.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/analyze.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/analyze.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/tree-il/analyze.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/tree-il/analyze.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/tree-il/analyze.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/tree-il/analyze.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/analyze.go", {st_mode=S_IFREG|0444, st_size=139805, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/tree-il/analyze.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=139805, ...}) = 0
[pid 32619] mmap(NULL, 139805, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3887000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/system/vm/program.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/vm/program", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/vm/program.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/vm/program", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/program.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/program", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/program.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/program", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/program.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/program", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/program.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/program", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/vm/program.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/vm/program", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/vm/program.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/vm/program", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/system/vm/program.scm", {st_mode=S_IFREG|0444, st_size=11032, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/system/vm/program.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/program.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/program.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/program.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/program.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/vm/program.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/vm/program.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/vm/program.go", {st_mode=S_IFREG|0444, st_size=15859, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/vm/program.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=15859, ...}) = 0
[pid 32619] mmap(NULL, 15859, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3883000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/system/vm/objcode.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/vm/objcode", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/vm/objcode.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/system/vm/objcode", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/objcode.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/objcode", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/objcode.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/objcode", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/objcode.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/objcode", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/objcode.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/objcode", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/vm/objcode.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/vm/objcode", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/vm/objcode.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/vm/objcode", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/system/vm/objcode.scm", {st_mode=S_IFREG|0444, st_size=1141, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/system/vm/objcode.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/objcode.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/objcode.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/system/vm/objcode.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/system/vm/objcode.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/system/vm/objcode.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/system/vm/objcode.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/vm/objcode.go", {st_mode=S_IFREG|0444, st_size=825, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/system/vm/objcode.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=825, ...}) = 0
[pid 32619] mmap(NULL, 825, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3882000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/language/glil/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/glil/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/glil/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/glil/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/glil/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/glil/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/glil/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/glil/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/glil/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/glil/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/glil/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/glil/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/glil/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/glil/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/glil/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/glil/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/glil/spec.scm", {st_mode=S_IFREG|0444, st_size=1446, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/glil/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/glil/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/glil/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/glil/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/glil/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/glil/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/glil/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/glil/spec.go", {st_mode=S_IFREG|0444, st_size=1622, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/glil/spec.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=1622, ...}) = 0
[pid 32619] mmap(NULL, 1622, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3881000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/language/glil/compile-assembly.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/glil/compile-assembly", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/glil/compile-assembly.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/glil/compile-assembly", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/glil/compile-assembly.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/glil/compile-assembly", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/glil/compile-assembly.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/glil/compile-assembly", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/glil/compile-assembly.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/glil/compile-assembly", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/glil/compile-assembly.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/glil/compile-assembly", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/glil/compile-assembly.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/glil/compile-assembly", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/glil/compile-assembly.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/glil/compile-assembly", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/glil/compile-assembly.scm", {st_mode=S_IFREG|0444, st_size=37648, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/glil/compile-assembly.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/glil/compile-assembly.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/glil/compile-assembly.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/glil/compile-assembly.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/glil/compile-assembly.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/glil/compile-assembly.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/glil/compile-assembly.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/glil/compile-assembly.go", {st_mode=S_IFREG|0444, st_size=41283, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/glil/compile-assembly.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=41283, ...}) = 0
[pid 32619] mmap(NULL, 41283, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3876000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/language/assembly.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/assembly", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/assembly.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/assembly", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/assembly.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/assembly", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/assembly.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/assembly", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/assembly.scm", {st_mode=S_IFREG|0444, st_size=5232, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/assembly.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/assembly.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/assembly.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/assembly.go", {st_mode=S_IFREG|0444, st_size=9924, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/assembly.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=9924, ...}) = 0
[pid 32619] mmap(NULL, 9924, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3873000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/language/assembly/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/assembly/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/assembly/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/assembly/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/assembly/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/assembly/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/assembly/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/assembly/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/assembly/spec.scm", {st_mode=S_IFREG|0444, st_size=1405, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/assembly/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/assembly/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/assembly/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/assembly/spec.go", {st_mode=S_IFREG|0444, st_size=1217, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/assembly/spec.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=1217, ...}) = 0
[pid 32619] mmap(NULL, 1217, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3872000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/language/assembly/compile-bytecode.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/assembly/compile-bytecode", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/assembly/compile-bytecode.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/assembly/compile-bytecode", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly/compile-bytecode.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly/compile-bytecode", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly/compile-bytecode.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly/compile-bytecode", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly/compile-bytecode.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly/compile-bytecode", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly/compile-bytecode.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly/compile-bytecode", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/assembly/compile-bytecode.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/assembly/compile-bytecode", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/assembly/compile-bytecode.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/assembly/compile-bytecode", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/assembly/compile-bytecode.scm", {st_mode=S_IFREG|0444, st_size=7983, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/assembly/compile-bytecode.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly/compile-bytecode.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly/compile-bytecode.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly/compile-bytecode.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly/compile-bytecode.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/assembly/compile-bytecode.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/assembly/compile-bytecode.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/assembly/compile-bytecode.go", {st_mode=S_IFREG|0444, st_size=9836, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/assembly/compile-bytecode.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=9836, ...}) = 0
[pid 32619] mmap(NULL, 9836, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f386f000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/language/assembly/decompile-bytecode.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/assembly/decompile-bytecode", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/assembly/decompile-bytecode.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/assembly/decompile-bytecode", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly/decompile-bytecode.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly/decompile-bytecode", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly/decompile-bytecode.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly/decompile-bytecode", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly/decompile-bytecode.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly/decompile-bytecode", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly/decompile-bytecode.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly/decompile-bytecode", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/assembly/decompile-bytecode.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/assembly/decompile-bytecode", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/assembly/decompile-bytecode.scm", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/assembly/decompile-bytecode", 0x7ffe14eb1250) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/assembly/decompile-bytecode.scm", {st_mode=S_IFREG|0444, st_size=6291, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/assembly/decompile-bytecode.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly/decompile-bytecode.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly/decompile-bytecode.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/assembly/decompile-bytecode.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/assembly/decompile-bytecode.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/assembly/decompile-bytecode.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/assembly/decompile-bytecode.go", 0x7ffe14eb12e0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/assembly/decompile-bytecode.go", {st_mode=S_IFREG|0444, st_size=9998, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/assembly/decompile-bytecode.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=9998, ...}) = 0
[pid 32619] mmap(NULL, 9998, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f386c000
[pid 32619] close(7)                    = 0
[pid 32619] brk(0x22b4000)              = 0x22b4000
[pid 32619] stat("/home/dave/Code/guix/language/bytecode/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/bytecode/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/bytecode/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/bytecode/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/bytecode/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/bytecode/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/bytecode/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/bytecode/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/bytecode/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/bytecode/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/bytecode/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/bytecode/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/bytecode/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/bytecode/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/bytecode/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/bytecode/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/bytecode/spec.scm", {st_mode=S_IFREG|0444, st_size=1419, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/bytecode/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/bytecode/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/bytecode/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/bytecode/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/bytecode/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/bytecode/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/bytecode/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/bytecode/spec.go", {st_mode=S_IFREG|0444, st_size=1651, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/bytecode/spec.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=1651, ...}) = 0
[pid 32619] mmap(NULL, 1651, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f386b000
[pid 32619] close(7)                    = 0
[pid 32619] stat("/home/dave/Code/guix/language/objcode/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/objcode/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/objcode/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/language/objcode/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/objcode/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/objcode/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/objcode/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/objcode/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/objcode/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/objcode/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/objcode/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/objcode/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/objcode/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/objcode/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/objcode/spec.scm", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/objcode/spec", 0x7ffe14eb1560) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/language/objcode/spec.scm", {st_mode=S_IFREG|0444, st_size=3002, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/language/objcode/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/objcode/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/objcode/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/language/objcode/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/language/objcode/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/language/objcode/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/language/objcode/spec.go", 0x7ffe14eb15f0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/objcode/spec.go", {st_mode=S_IFREG|0444, st_size=3402, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/language/objcode/spec.go", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=3402, ...}) = 0
[pid 32619] mmap(NULL, 3402, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f386a000
[pid 32619] close(7)                    = 0
[pid 32619] futex(0x7f08f78ed420, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 32619] open("/proc/self/statm", O_RDONLY) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
[pid 32619] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f3869000
[pid 32619] read(7, "21101 6291 2300 2 0 10316 0\n", 1024) = 28
[pid 32619] close(7)                    = 0
[pid 32619] munmap(0x7f08f3869000, 4096) = 0
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 184518796}) = 0
[pid 32619] rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 294) = 3
[pid 32622] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 296 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 295, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 297, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 300 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 299, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 298 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 301, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 302 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 303, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 304 <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 305, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 306, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 306, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 310 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 307, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] <... futex resumed> )       = 2
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 1
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 311, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 312, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 312, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 313, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 316 <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 2
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 1
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 1
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 317, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 318, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 322 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 319, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 2
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 323, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 324, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 324, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 325, NULL <unfinished ...>
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 199523315}) = 0
[pid 32619] open("/gnu/store/x2vcwnrwhydd6knmlqsnan0jg13i96zd-glibc-2.22/share/locale/locale.alias", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=2997, ...}) = 0
[pid 32619] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f3869000
[pid 32619] read(7, "# Locale name alias data base.\n#"..., 4096) = 2997
[pid 32619] read(7, "", 4096)           = 0
[pid 32619] close(7)                    = 0
[pid 32619] munmap(0x7f08f3869000, 4096) = 0
[pid 32619] open("/gnu/store/ksmf9sh2gcbry0rz0zm4diqgsiysjzgg-glibc-utf8-locales-2.22/lib/locale/en_US.UTF-8/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=361, ...}) = 0
[pid 32619] mmap(NULL, 361, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3869000
[pid 32619] close(7)                    = 0
[pid 32619] open("/gnu/store/ksmf9sh2gcbry0rz0zm4diqgsiysjzgg-glibc-utf8-locales-2.22/lib/locale/en_US.UTF-8/LC_MEASUREMENT", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=23, ...}) = 0
[pid 32619] mmap(NULL, 23, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3868000
[pid 32619] close(7)                    = 0
[pid 32619] open("/gnu/store/ksmf9sh2gcbry0rz0zm4diqgsiysjzgg-glibc-utf8-locales-2.22/lib/locale/en_US.UTF-8/LC_TELEPHONE", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=59, ...}) = 0
[pid 32619] mmap(NULL, 59, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3867000
[pid 32619] close(7)                    = 0
[pid 32619] open("/gnu/store/ksmf9sh2gcbry0rz0zm4diqgsiysjzgg-glibc-utf8-locales-2.22/lib/locale/en_US.UTF-8/LC_ADDRESS", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=155, ...}) = 0
[pid 32619] mmap(NULL, 155, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3866000
[pid 32619] close(7)                    = 0
[pid 32619] open("/gnu/store/ksmf9sh2gcbry0rz0zm4diqgsiysjzgg-glibc-utf8-locales-2.22/lib/locale/en_US.UTF-8/LC_NAME", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=77, ...}) = 0
[pid 32619] mmap(NULL, 77, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3865000
[pid 32619] close(7)                    = 0
[pid 32619] open("/gnu/store/ksmf9sh2gcbry0rz0zm4diqgsiysjzgg-glibc-utf8-locales-2.22/lib/locale/en_US.UTF-8/LC_PAPER", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=34, ...}) = 0
[pid 32619] mmap(NULL, 34, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3864000
[pid 32619] close(7)                    = 0
[pid 32619] open("/gnu/store/ksmf9sh2gcbry0rz0zm4diqgsiysjzgg-glibc-utf8-locales-2.22/lib/locale/en_US.UTF-8/LC_MONETARY", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=286, ...}) = 0
[pid 32619] mmap(NULL, 286, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3863000
[pid 32619] close(7)                    = 0
[pid 32619] open("/gnu/store/ksmf9sh2gcbry0rz0zm4diqgsiysjzgg-glibc-utf8-locales-2.22/lib/locale/en_US.UTF-8/LC_COLLATE", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=1243776, ...}) = 0
[pid 32619] mmap(NULL, 1243776, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3733000
[pid 32619] close(7)                    = 0
[pid 32619] open("/gnu/store/ksmf9sh2gcbry0rz0zm4diqgsiysjzgg-glibc-utf8-locales-2.22/lib/locale/en_US.UTF-8/LC_TIME", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=2454, ...}) = 0
[pid 32619] mmap(NULL, 2454, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3732000
[pid 32619] close(7)                    = 0
[pid 32619] open("/gnu/store/ksmf9sh2gcbry0rz0zm4diqgsiysjzgg-glibc-utf8-locales-2.22/lib/locale/en_US.UTF-8/LC_NUMERIC", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=54, ...}) = 0
[pid 32619] mmap(NULL, 54, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f3731000
[pid 32619] close(7)                    = 0
[pid 32619] open("/gnu/store/ksmf9sh2gcbry0rz0zm4diqgsiysjzgg-glibc-utf8-locales-2.22/lib/locale/en_US.UTF-8/LC_CTYPE", O_RDONLY|O_CLOEXEC) = 7
[pid 32619] fstat(7, {st_mode=S_IFREG|0444, st_size=278308, ...}) = 0
[pid 32619] mmap(NULL, 278308, PROT_READ, MAP_PRIVATE, 7, 0) = 0x7f08f36ed000
[pid 32619] close(7)                    = 0
[pid 32619] pipe2([7, 8], O_CLOEXEC)    = 0
[pid 32619] mmap(NULL, 8392704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f08f2eec000
[pid 32619] mprotect(0x7f08f2eec000, 4096, PROT_NONE) = 0
[pid 32619] clone(Process 32623 attached
child_stack=0x7f08f36ebfb0, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x7f08f36ec9d0, tls=0x7f08f36ec700, child_tidptr=0x7f08f36ec9d0) = 32623
[pid 32623] set_robust_list(0x7f08f36ec9e0, 24 <unfinished ...>
[pid 32619] futex(0x205cfd8, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME, 0, NULL, ffffffff <unfinished ...>
[pid 32623] <... set_robust_list resumed> ) = 0
[pid 32623] futex(0x205cfd8, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32623] <... futex resumed> )       = 1
[pid 32619] futex(0x7ffe14eb20ac, FUTEX_WAIT_PRIVATE, 1, NULL <unfinished ...>
[pid 32623] pipe2([9, 11], O_CLOEXEC)   = 0
[pid 32623] brk(0x2525000)              = 0x2525000
[pid 32623] futex(0x7ffe14eb20ac, FUTEX_WAKE_OP_PRIVATE, 1, 1, 0x7ffe14eb20a8, {FUTEX_OP_SET, 0, FUTEX_OP_CMP_GT, 1} <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32623] <... futex resumed> )       = 1
[pid 32619] futex(0x7ffe14eb2080, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32623] futex(0x7ffe14eb2080, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32623] <... futex resumed> )       = 0
[pid 32619] futex(0x7ffe14eb2080, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32623] rt_sigprocmask(SIG_SETMASK, ~[PWR RTMIN RT_1],  <unfinished ...>
[pid 32619] futex(0x7f08f78ee348, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32623] <... rt_sigprocmask resumed> NULL, 8) = 0
[pid 32619] <... futex resumed> )       = 0
[pid 32623] rt_sigprocmask(SIG_BLOCK, NULL,  <unfinished ...>
[pid 32619] rt_sigaction(SIGPIPE, {SIG_IGN, [], SA_RESTORER, 0x7f08f70eddd0},  <unfinished ...>
[pid 32623] <... rt_sigprocmask resumed> ~[KILL STOP PWR RTMIN RT_1], 8) = 0
[pid 32619] <... rt_sigaction resumed> {SIG_IGN, [], 0}, 8) = 0
[pid 32623] read(7,  <unfinished ...>
[pid 32619] fstat(1, {st_mode=S_IFREG|0644, st_size=586647, ...}) = 0
[pid 32619] fstat(2, {st_mode=S_IFREG|0644, st_size=586717, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/scripts/environment.scm", {st_mode=S_IFREG|0644, st_size=20831, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/scripts/environment.go", {st_mode=S_IFREG|0644, st_size=30849, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/scripts/environment.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=30849, ...}) = 0
[pid 32619] mmap(NULL, 30849, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ee4000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/guix/scripts.scm", {st_mode=S_IFREG|0644, st_size=4458, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/scripts.go", {st_mode=S_IFREG|0644, st_size=6126, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/scripts.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6126, ...}) = 0
[pid 32619] mmap(NULL, 6126, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ee2000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-37.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-37", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-37.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-37", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-37.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-37", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-37.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-37", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-37.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-37", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-37.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-37", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-37.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-37", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-37.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-37", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/srfi/srfi-37.scm", {st_mode=S_IFREG|0444, st_size=8566, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-37.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-37.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-37.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-37.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-37.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-37.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-37.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-37.go", {st_mode=S_IFREG|0444, st_size=31534, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-37.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0444, st_size=31534, ...}) = 0
[pid 32619] mmap(NULL, 31534, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2eda000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/guix/scripts/build.scm", {st_mode=S_IFREG|0644, st_size=22821, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/scripts/build.go", {st_mode=S_IFREG|0644, st_size=34556, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/scripts/build.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=34556, ...}) = 0
[pid 32619] mmap(NULL, 34556, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ed1000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/build/linux-container.scm", {st_mode=S_IFREG|0644, st_size=10642, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/build/linux-container.go", {st_mode=S_IFREG|0644, st_size=14087, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/build/linux-container.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=14087, ...}) = 0
[pid 32619] mmap(NULL, 14087, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ecd000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-98.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-98", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-98.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-98", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-98.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-98", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-98.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-98", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-98.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-98", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-98.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-98", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-98.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-98", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-98.scm", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-98", 0x7ffe14eb1b80) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/srfi/srfi-98.scm", {st_mode=S_IFREG|0444, st_size=1612, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/srfi/srfi-98.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-98.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-98.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/srfi/srfi-98.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/srfi/srfi-98.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/srfi/srfi-98.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/srfi/srfi-98.go", 0x7ffe14eb1c10) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-98.go", {st_mode=S_IFREG|0444, st_size=1283, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/srfi/srfi-98.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0444, st_size=1283, ...}) = 0
[pid 32619] mmap(NULL, 1283, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ecc000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/system/linux-container.scm", {st_mode=S_IFREG|0644, st_size=5083, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/system/linux-container.go", {st_mode=S_IFREG|0644, st_size=8772, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/system/linux-container.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=8772, ...}) = 0
[pid 32619] mmap(NULL, 8772, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ec9000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/system.scm", {st_mode=S_IFREG|0644, st_size=37686, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/system.go", {st_mode=S_IFREG|0644, st_size=166040, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/system.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=166040, ...}) = 0
[pid 32619] mmap(NULL, 166040, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ea0000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/base.scm", {st_mode=S_IFREG|0644, st_size=38479, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/base.go", {st_mode=S_IFREG|0644, st_size=50417, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/base.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=50417, ...}) = 0
[pid 32619] mmap(NULL, 50417, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2e93000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages.scm", {st_mode=S_IFREG|0644, st_size=18089, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages.go", {st_mode=S_IFREG|0644, st_size=25620, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=25620, ...}) = 0
[pid 32619] mmap(NULL, 25620, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2e8c000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/guix/ftp-client.scm", {st_mode=S_IFREG|0644, st_size=9892, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/ftp-client.go", {st_mode=S_IFREG|0644, st_size=29710, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/ftp-client.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=29710, ...}) = 0
[pid 32619] mmap(NULL, 29710, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2e84000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/guix/gnu-maintenance.scm", {st_mode=S_IFREG|0644, st_size=22047, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/gnu-maintenance.go", {st_mode=S_IFREG|0644, st_size=108532, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/gnu-maintenance.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=108532, ...}) = 0
[pid 32619] mmap(NULL, 108532, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2e69000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/web/client.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/web/client", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/web/client.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/web/client", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/client.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/client", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/client.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/client", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/client.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/client", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/client.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/client", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/web/client.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/web/client", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/web/client.scm", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/web/client", 0x7ffe14eb0f40) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/web/client.scm", {st_mode=S_IFREG|0444, st_size=15277, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/web/client.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/client.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/client.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/client.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/client.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/web/client.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/web/client.go", 0x7ffe14eb0fd0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/web/client.go", {st_mode=S_IFREG|0444, st_size=34335, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/web/client.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0444, st_size=34335, ...}) = 0
[pid 32619] mmap(NULL, 34335, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2e60000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/iconv.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/iconv", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/iconv.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/ice-9/iconv", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/iconv.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/iconv", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/iconv.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/iconv", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/iconv.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/iconv", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/iconv.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/iconv", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/iconv.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/iconv", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/iconv.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/iconv", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/ice-9/iconv.scm", {st_mode=S_IFREG|0444, st_size=3735, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/ice-9/iconv.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/iconv.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/iconv.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/ice-9/iconv.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/ice-9/iconv.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/ice-9/iconv.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/ice-9/iconv.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/iconv.go", {st_mode=S_IFREG|0444, st_size=3949, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/ice-9/iconv.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0444, st_size=3949, ...}) = 0
[pid 32619] mmap(NULL, 3949, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2e5f000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/web/request.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/web/request", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/web/request.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/web/request", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/request.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/request", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/request.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/request", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/request.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/request", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/request.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/request", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/web/request.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/web/request", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/web/request.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/web/request", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/web/request.scm", {st_mode=S_IFREG|0444, st_size=11427, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/web/request.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/request.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/request.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/request.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/request.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/web/request.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/web/request.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/web/request.go", {st_mode=S_IFREG|0444, st_size=54563, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/web/request.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0444, st_size=54563, ...}) = 0
[pid 32619] mmap(NULL, 54563, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2e51000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x2535000)              = 0x2535000
[pid 32619] stat("/home/dave/Code/guix/web/http.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/web/http", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/web/http.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/web/http", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/http.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/http", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/http.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/http", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/http.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/http", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/http.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/http", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/web/http.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/web/http", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/web/http.scm", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/web/http", 0x7ffe14eb0920) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/web/http.scm", {st_mode=S_IFREG|0444, st_size=70664, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/web/http.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/http.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/http.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/http.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/http.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/web/http.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/web/http.go", 0x7ffe14eb09b0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/web/http.go", {st_mode=S_IFREG|0444, st_size=125662, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/web/http.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0444, st_size=125662, ...}) = 0
[pid 32619] mmap(NULL, 125662, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2e32000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/web/response.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/web/response", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/web/response.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/Code/guix/web/response", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/response.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/response", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/response.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/response", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/response.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/response", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/response.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/response", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/web/response.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/web/response", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/web/response.scm", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/web/response", 0x7ffe14eb0c30) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/share/guile/2.0/web/response.scm", {st_mode=S_IFREG|0444, st_size=13291, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/web/response.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/response.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/response.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/dzgya6m5ip7fmc4vpd20r9zqlfdk4vbd-guile-json-0.4.0/share/guile/site/2.0/web/response.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/4zz3xyn00b2wzcv5lkvl8sd040rxwg53-gnutls-3.4.5/share/guile/site/2.0/web/response.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/home/dave/.guix-profile/share/guile/site/2.0/web/response.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/run/current-system/profile/share/guile/site/2.0/web/response.go", 0x7ffe14eb0cc0) = -1 ENOENT (No such file or directory)
[pid 32619] stat("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/web/response.go", {st_mode=S_IFREG|0444, st_size=53810, ...}) = 0
[pid 32619] open("/gnu/store/al0jh5j7wrwq5l9b9hd285fxi5va5r4k-guile-2.0.11/lib/guile/2.0/ccache/web/response.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0444, st_size=53810, ...}) = 0
[pid 32619] mmap(NULL, 53810, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2e24000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/guix/http-client.scm", {st_mode=S_IFREG|0644, st_size=9534, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/http-client.go", {st_mode=S_IFREG|0644, st_size=10298, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/http-client.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=10298, ...}) = 0
[pid 32619] mmap(NULL, 10298, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2e21000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build/download.scm", {st_mode=S_IFREG|0644, st_size=23183, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build/download.go", {st_mode=S_IFREG|0644, st_size=28710, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/build/download.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=28710, ...}) = 0
[pid 32619] mmap(NULL, 28710, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2e19000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/guix/download.scm", {st_mode=S_IFREG|0644, st_size=13380, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/download.go", {st_mode=S_IFREG|0644, st_size=14702, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/download.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=14702, ...}) = 0
[pid 32619] mmap(NULL, 14702, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2e15000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/guix/gnupg.scm", {st_mode=S_IFREG|0644, st_size=7302, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/gnupg.go", {st_mode=S_IFREG|0644, st_size=6845, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/gnupg.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6845, ...}) = 0
[pid 32619] mmap(NULL, 6845, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2e13000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x2545000)              = 0x2545000
[pid 32619] stat("/home/dave/Code/guix/guix.scm", {st_mode=S_IFREG|0644, st_size=1357, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/acl.scm", {st_mode=S_IFREG|0644, st_size=2488, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/acl.go", {st_mode=S_IFREG|0644, st_size=3890, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/acl.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3890, ...}) = 0
[pid 32619] mmap(NULL, 3890, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2e12000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/attr.scm", {st_mode=S_IFREG|0644, st_size=3059, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/attr.go", {st_mode=S_IFREG|0644, st_size=3923, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/attr.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3923, ...}) = 0
[pid 32619] mmap(NULL, 3923, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2e11000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/perl.scm", {st_mode=S_IFREG|0644, st_size=239784, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/perl.go", {st_mode=S_IFREG|0644, st_size=534063, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/perl.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=534063, ...}) = 0
[pid 32619] mmap(NULL, 534063, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d8e000
[pid 32619] close(12)                   = 0
[pid 32619] open("/proc/self/statm", O_RDONLY) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
[pid 32619] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f2d8d000
[pid 32619] read(12, "24538 7265 2658 2 0 13022 0\n", 1024) = 28
[pid 32619] close(12)                   = 0
[pid 32619] munmap(0x7f08f2d8d000, 4096) = 0
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 220128363}) = 0
[pid 32619] rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 328) = 3
[pid 32621] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 330 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 329, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 331, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 332 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 333, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 334 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = 0
[pid 32619] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 335, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 336 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 338 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 337, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 340 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 339, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 341, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 342, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 345, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 346, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 344 <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 346, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 2
[pid 32620] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 350 <unfinished ...>
[pid 32620] <... futex resumed> )       = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 347, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 351, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 352, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 354 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 355, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 3
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 356, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 358 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 359, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 360, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 361, NULL <unfinished ...>
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 237930197}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/gnu.scm", {st_mode=S_IFREG|0644, st_size=22060, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/gnu.go", {st_mode=S_IFREG|0644, st_size=29453, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/build-system/gnu.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=29453, ...}) = 0
[pid 32619] mmap(NULL, 29453, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d86000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/perl.scm", {st_mode=S_IFREG|0644, st_size=5559, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/perl.go", {st_mode=S_IFREG|0644, st_size=5900, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/build-system/perl.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5900, ...}) = 0
[pid 32619] mmap(NULL, 5900, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d84000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x2790000)              = 0x2790000
[pid 32619] brk(0x27a0000)              = 0x27a0000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gettext.scm", {st_mode=S_IFREG|0644, st_size=6836, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gettext.go", {st_mode=S_IFREG|0644, st_size=8151, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gettext.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=8151, ...}) = 0
[pid 32619] mmap(NULL, 8151, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d82000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/docbook.scm", {st_mode=S_IFREG|0644, st_size=8125, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/docbook.go", {st_mode=S_IFREG|0644, st_size=12128, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/docbook.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=12128, ...}) = 0
[pid 32619] mmap(NULL, 12128, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d7f000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/compression.scm", {st_mode=S_IFREG|0644, st_size=24773, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/compression.go", {st_mode=S_IFREG|0644, st_size=42193, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/compression.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=42193, ...}) = 0
[pid 32619] mmap(NULL, 42193, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d74000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/guix/git-download.scm", {st_mode=S_IFREG|0644, st_size=3813, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/git-download.go", {st_mode=S_IFREG|0644, st_size=33397, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/git-download.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=33397, ...}) = 0
[pid 32619] mmap(NULL, 33397, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d6b000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/valgrind.scm", {st_mode=S_IFREG|0644, st_size=3014, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/valgrind.go", {st_mode=S_IFREG|0644, st_size=4097, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/valgrind.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4097, ...}) = 0
[pid 32619] mmap(NULL, 4097, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d69000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gdb.scm", {st_mode=S_IFREG|0644, st_size=4508, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gdb.go", {st_mode=S_IFREG|0644, st_size=5336, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gdb.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5336, ...}) = 0
[pid 32619] mmap(NULL, 5336, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d67000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ncurses.scm", {st_mode=S_IFREG|0644, st_size=5300, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ncurses.go", {st_mode=S_IFREG|0644, st_size=5452, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/ncurses.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5452, ...}) = 0
[pid 32619] mmap(NULL, 5452, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d65000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/readline.scm", {st_mode=S_IFREG|0644, st_size=3839, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/readline.go", {st_mode=S_IFREG|0644, st_size=5645, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/readline.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5645, ...}) = 0
[pid 32619] mmap(NULL, 5645, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d63000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dejagnu.scm", {st_mode=S_IFREG|0644, st_size=3612, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dejagnu.go", {st_mode=S_IFREG|0644, st_size=4196, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/dejagnu.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4196, ...}) = 0
[pid 32619] mmap(NULL, 4196, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d61000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tcl.scm", {st_mode=S_IFREG|0644, st_size=9074, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tcl.go", {st_mode=S_IFREG|0644, st_size=11735, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/tcl.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=11735, ...}) = 0
[pid 32619] mmap(NULL, 11735, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d5e000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/image.scm", {st_mode=S_IFREG|0644, st_size=24245, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/image.go", {st_mode=S_IFREG|0644, st_size=39413, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/image.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=39413, ...}) = 0
[pid 32619] mmap(NULL, 39413, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d54000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/algebra.scm", {st_mode=S_IFREG|0644, st_size=17407, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/algebra.go", {st_mode=S_IFREG|0644, st_size=28693, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/algebra.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=28693, ...}) = 0
[pid 32619] mmap(NULL, 28693, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d4c000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/multiprecision.scm", {st_mode=S_IFREG|0644, st_size=3950, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/multiprecision.go", {st_mode=S_IFREG|0644, st_size=7012, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/multiprecision.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=7012, ...}) = 0
[pid 32619] mmap(NULL, 7012, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d4a000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/m4.scm", {st_mode=S_IFREG|0644, st_size=2626, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/m4.go", {st_mode=S_IFREG|0644, st_size=3759, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/m4.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3759, ...}) = 0
[pid 32619] mmap(NULL, 3759, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d49000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mpi.scm", {st_mode=S_IFREG|0644, st_size=5925, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mpi.go", {st_mode=S_IFREG|0644, st_size=8222, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/mpi.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=8222, ...}) = 0
[pid 32619] mmap(NULL, 8222, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d46000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gcc.scm", {st_mode=S_IFREG|0644, st_size=31224, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gcc.go", {st_mode=S_IFREG|0644, st_size=35896, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gcc.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=35896, ...}) = 0
[pid 32619] mmap(NULL, 35896, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d3d000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x27b0000)              = 0x27b0000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap.scm", {st_mode=S_IFREG|0644, st_size=20761, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap.go", {st_mode=S_IFREG|0644, st_size=24223, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/bootstrap.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=24223, ...}) = 0
[pid 32619] mmap(NULL, 24223, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d37000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/trivial.scm", {st_mode=S_IFREG|0644, st_size=3597, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/trivial.go", {st_mode=S_IFREG|0644, st_size=4955, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/build-system/trivial.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4955, ...}) = 0
[pid 32619] mmap(NULL, 4955, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d35000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/texinfo.scm", {st_mode=S_IFREG|0644, st_size=5079, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/texinfo.go", {st_mode=S_IFREG|0644, st_size=7982, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/texinfo.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=7982, ...}) = 0
[pid 32619] mmap(NULL, 7982, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d33000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/linux.scm", {st_mode=S_IFREG|0644, st_size=101478, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/linux.go", {st_mode=S_IFREG|0644, st_size=143977, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/linux.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=143977, ...}) = 0
[pid 32619] mmap(NULL, 143977, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d0f000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/flex.scm", {st_mode=S_IFREG|0644, st_size=3587, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/flex.go", {st_mode=S_IFREG|0644, st_size=4796, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/flex.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4796, ...}) = 0
[pid 32619] mmap(NULL, 4796, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d0d000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bison.scm", {st_mode=S_IFREG|0644, st_size=2410, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bison.go", {st_mode=S_IFREG|0644, st_size=3945, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/bison.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3945, ...}) = 0
[pid 32619] mmap(NULL, 3945, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d0c000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/indent.scm", {st_mode=S_IFREG|0644, st_size=2384, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/indent.go", {st_mode=S_IFREG|0644, st_size=3467, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/indent.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3467, ...}) = 0
[pid 32619] mmap(NULL, 3467, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2d0b000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/admin.scm", {st_mode=S_IFREG|0644, st_size=50614, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/admin.go", {st_mode=S_IFREG|0644, st_size=75742, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/admin.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=75742, ...}) = 0
[pid 32619] mmap(NULL, 75742, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2cf8000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x2a4f000)              = 0x2a4f000
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/cmake.scm", {st_mode=S_IFREG|0644, st_size=6232, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/cmake.go", {st_mode=S_IFREG|0644, st_size=6765, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/build-system/cmake.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6765, ...}) = 0
[pid 32619] mmap(NULL, 6765, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2cf6000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/python.scm", {st_mode=S_IFREG|0644, st_size=7866, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/python.go", {st_mode=S_IFREG|0644, st_size=9919, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/build-system/python.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=9919, ...}) = 0
[pid 32619] mmap(NULL, 9919, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2cf3000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/guile.scm", {st_mode=S_IFREG|0644, st_size=24003, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/guile.go", {st_mode=S_IFREG|0644, st_size=34494, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/guile.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=34494, ...}) = 0
[pid 32619] mmap(NULL, 34494, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2cea000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x2a5f000)              = 0x2a5f000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bash.scm", {st_mode=S_IFREG|0644, st_size=14360, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bash.go", {st_mode=S_IFREG|0644, st_size=18979, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/bash.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=18979, ...}) = 0
[pid 32619] mmap(NULL, 18979, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ce5000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bdw-gc.scm", {st_mode=S_IFREG|0644, st_size=4223, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bdw-gc.go", {st_mode=S_IFREG|0644, st_size=6898, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/bdw-gc.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6898, ...}) = 0
[pid 32619] mmap(NULL, 6898, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ce3000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pkg-config.scm", {st_mode=S_IFREG|0644, st_size=4747, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pkg-config.go", {st_mode=S_IFREG|0644, st_size=7591, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/pkg-config.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=7591, ...}) = 0
[pid 32619] mmap(NULL, 7591, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ce1000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gawk.scm", {st_mode=S_IFREG|0644, st_size=3612, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gawk.go", {st_mode=S_IFREG|0644, st_size=4377, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gawk.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4377, ...}) = 0
[pid 32619] mmap(NULL, 4377, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2cdf000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libsigsegv.scm", {st_mode=S_IFREG|0644, st_size=2464, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libsigsegv.go", {st_mode=S_IFREG|0644, st_size=3623, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/libsigsegv.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3623, ...}) = 0
[pid 32619] mmap(NULL, 3623, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2cde000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gperf.scm", {st_mode=S_IFREG|0644, st_size=1784, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gperf.go", {st_mode=S_IFREG|0644, st_size=3042, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gperf.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3042, ...}) = 0
[pid 32619] mmap(NULL, 3042, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2cdd000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libffi.scm", {st_mode=S_IFREG|0644, st_size=2915, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libffi.go", {st_mode=S_IFREG|0644, st_size=3948, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/libffi.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3948, ...}) = 0
[pid 32619] mmap(NULL, 3948, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2cdc000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/autotools.scm", {st_mode=S_IFREG|0644, st_size=14586, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/autotools.go", {st_mode=S_IFREG|0644, st_size=19399, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/autotools.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=19399, ...}) = 0
[pid 32619] mmap(NULL, 19399, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2cd7000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libunistring.scm", {st_mode=S_IFREG|0644, st_size=2137, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libunistring.go", {st_mode=S_IFREG|0644, st_size=3041, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/libunistring.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3041, ...}) = 0
[pid 32619] mmap(NULL, 3041, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2cd6000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ed.scm", {st_mode=S_IFREG|0644, st_size=2335, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ed.go", {st_mode=S_IFREG|0644, st_size=3551, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/ed.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3551, ...}) = 0
[pid 32619] mmap(NULL, 3551, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2cd5000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x2a6f000)              = 0x2a6f000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gdbm.scm", {st_mode=S_IFREG|0644, st_size=1772, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gdbm.go", {st_mode=S_IFREG|0644, st_size=3049, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gdbm.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3049, ...}) = 0
[pid 32619] mmap(NULL, 3049, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2cd4000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tls.scm", {st_mode=S_IFREG|0644, st_size=15397, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tls.go", {st_mode=S_IFREG|0644, st_size=18343, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/tls.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=18343, ...}) = 0
[pid 32619] mmap(NULL, 18343, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ccf000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libidn.scm", {st_mode=S_IFREG|0644, st_size=1796, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libidn.go", {st_mode=S_IFREG|0644, st_size=2955, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/libidn.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=2955, ...}) = 0
[pid 32619] mmap(NULL, 2955, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2cce000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/nettle.scm", {st_mode=S_IFREG|0644, st_size=3722, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/nettle.go", {st_mode=S_IFREG|0644, st_size=5579, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/nettle.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5579, ...}) = 0
[pid 32619] mmap(NULL, 5579, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ccc000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnupg.scm", {st_mode=S_IFREG|0644, st_size=21251, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnupg.go", {st_mode=S_IFREG|0644, st_size=34585, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gnupg.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=34585, ...}) = 0
[pid 32619] mmap(NULL, 34585, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2cc3000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/curl.scm", {st_mode=S_IFREG|0644, st_size=5498, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/curl.go", {st_mode=S_IFREG|0644, st_size=5543, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/curl.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5543, ...}) = 0
[pid 32619] mmap(NULL, 5543, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2cc1000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/groff.scm", {st_mode=S_IFREG|0644, st_size=2381, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/groff.go", {st_mode=S_IFREG|0644, st_size=3499, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/groff.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3499, ...}) = 0
[pid 32619] mmap(NULL, 3499, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2cc0000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ghostscript.scm", {st_mode=S_IFREG|0644, st_size=11743, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ghostscript.go", {st_mode=S_IFREG|0644, st_size=19387, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/ghostscript.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=19387, ...}) = 0
[pid 32619] mmap(NULL, 19387, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2cbb000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fontutils.scm", {st_mode=S_IFREG|0644, st_size=16383, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fontutils.go", {st_mode=S_IFREG|0644, st_size=24847, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/fontutils.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=24847, ...}) = 0
[pid 32619] mmap(NULL, 24847, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2cb4000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/python.scm", {st_mode=S_IFREG|0644, st_size=193992, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/python.go", {st_mode=S_IFREG|0644, st_size=370269, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/python.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=370269, ...}) = 0
[pid 32619] mmap(NULL, 370269, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2c59000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x2a7f000)              = 0x2a7f000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/databases.scm", {st_mode=S_IFREG|0644, st_size=32066, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/databases.go", {st_mode=S_IFREG|0644, st_size=49686, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/databases.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=49686, ...}) = 0
[pid 32619] mmap(NULL, 49686, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2c4c000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/language.scm", {st_mode=S_IFREG|0644, st_size=16113, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/language.go", {st_mode=S_IFREG|0644, st_size=33449, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/language.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=33449, ...}) = 0
[pid 32619] mmap(NULL, 33449, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2c43000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/web.scm", {st_mode=S_IFREG|0644, st_size=120188, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/web.go", {st_mode=S_IFREG|0644, st_size=231573, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/web.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=231573, ...}) = 0
[pid 32619] mmap(NULL, 231573, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2c0a000
[pid 32619] close(12)                   = 0
[pid 32619] open("/proc/self/statm", O_RDONLY) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
[pid 32619] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f2c09000
[pid 32619] read(12, "26264 8937 3007 2 0 14360 0\n", 1024) = 28
[pid 32619] close(12)                   = 0
[pid 32619] munmap(0x7f08f2c09000, 4096) = 0
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 266712953}) = 0
[pid 32619] rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 364) = 3
[pid 32621] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 365, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 366 <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 367, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 368 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 369, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 370 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 371, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 372 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 373, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 374 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 375, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 376 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = 0
[pid 32619] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 377, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 378 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 379, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 381, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 381, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 380, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 381, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 381, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 2
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 384 <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 2
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 385, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 386, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 386, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 387, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 387, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 390 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 3
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 391, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 392, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 394 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 2
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 395, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 396, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 397, NULL <unfinished ...>
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 288670571}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/cvs-download.scm", {st_mode=S_IFREG|0644, st_size=3285, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/cvs-download.go", {st_mode=S_IFREG|0644, st_size=33037, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/cvs-download.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=33037, ...}) = 0
[pid 32619] mmap(NULL, 33037, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2c01000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/r.scm", {st_mode=S_IFREG|0644, st_size=5361, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/r.go", {st_mode=S_IFREG|0644, st_size=6171, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/build-system/r.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6171, ...}) = 0
[pid 32619] mmap(NULL, 6171, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2bff000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/apr.scm", {st_mode=S_IFREG|0644, st_size=4300, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/apr.go", {st_mode=S_IFREG|0644, st_size=6048, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/apr.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6048, ...}) = 0
[pid 32619] mmap(NULL, 6048, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2bfd000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xml.scm", {st_mode=S_IFREG|0644, st_size=19639, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xml.go", {st_mode=S_IFREG|0644, st_size=35342, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/xml.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=35342, ...}) = 0
[pid 32619] mmap(NULL, 35342, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2bf4000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x2d7f000)              = 0x2d7f000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/asciidoc.scm", {st_mode=S_IFREG|0644, st_size=2151, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/asciidoc.go", {st_mode=S_IFREG|0644, st_size=3429, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/asciidoc.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3429, ...}) = 0
[pid 32619] mmap(NULL, 3429, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2bf3000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cyrus-sasl.scm", {st_mode=S_IFREG|0644, st_size=2889, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cyrus-sasl.go", {st_mode=S_IFREG|0644, st_size=3804, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/cyrus-sasl.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3804, ...}) = 0
[pid 32619] mmap(NULL, 3804, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2bf2000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mit-krb5.scm", {st_mode=S_IFREG|0644, st_size=3920, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mit-krb5.go", {st_mode=S_IFREG|0644, st_size=5074, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/mit-krb5.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5074, ...}) = 0
[pid 32619] mmap(NULL, 5074, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2bf0000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gd.scm", {st_mode=S_IFREG|0644, st_size=5938, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gd.go", {st_mode=S_IFREG|0644, st_size=8956, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gd.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=8956, ...}) = 0
[pid 32619] mmap(NULL, 8956, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2bed000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/imagemagick.scm", {st_mode=S_IFREG|0644, st_size=6586, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/imagemagick.go", {st_mode=S_IFREG|0644, st_size=8644, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/imagemagick.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=8644, ...}) = 0
[pid 32619] mmap(NULL, 8644, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2bea000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/graphviz.scm", {st_mode=S_IFREG|0644, st_size=5293, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/graphviz.go", {st_mode=S_IFREG|0644, st_size=7191, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/graphviz.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=7191, ...}) = 0
[pid 32619] mmap(NULL, 7191, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2be8000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xorg.scm", {st_mode=S_IFREG|0644, st_size=168469, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xorg.go", {st_mode=S_IFREG|0644, st_size=348881, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/xorg.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=348881, ...}) = 0
[pid 32619] mmap(NULL, 348881, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2b92000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gl.scm", {st_mode=S_IFREG|0644, st_size=21679, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gl.go", {st_mode=S_IFREG|0644, st_size=31746, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gl.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=31746, ...}) = 0
[pid 32619] mmap(NULL, 31746, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2b8a000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/video.scm", {st_mode=S_IFREG|0644, st_size=47979, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/video.go", {st_mode=S_IFREG|0644, st_size=64217, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/video.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=64217, ...}) = 0
[pid 32619] mmap(NULL, 64217, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2b7a000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/waf.scm", {st_mode=S_IFREG|0644, st_size=5147, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/waf.go", {st_mode=S_IFREG|0644, st_size=5360, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/build-system/waf.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5360, ...}) = 0
[pid 32619] mmap(NULL, 5360, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2b78000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/audio.scm", {st_mode=S_IFREG|0644, st_size=68828, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/audio.go", {st_mode=S_IFREG|0644, st_size=117334, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/audio.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=117334, ...}) = 0
[pid 32619] mmap(NULL, 117334, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2b5b000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x2d8f000)              = 0x2d8f000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/avahi.scm", {st_mode=S_IFREG|0644, st_size=4583, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/avahi.go", {st_mode=S_IFREG|0644, st_size=6251, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/avahi.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6251, ...}) = 0
[pid 32619] mmap(NULL, 6251, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2b59000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libdaemon.scm", {st_mode=S_IFREG|0644, st_size=2903, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libdaemon.go", {st_mode=S_IFREG|0644, st_size=5686, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/libdaemon.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5686, ...}) = 0
[pid 32619] mmap(NULL, 5686, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2b57000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/glib.scm", {st_mode=S_IFREG|0644, st_size=23126, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/glib.go", {st_mode=S_IFREG|0644, st_size=29806, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/glib.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=29806, ...}) = 0
[pid 32619] mmap(NULL, 29806, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2b4f000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gtk.scm", {st_mode=S_IFREG|0644, st_size=40773, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gtk.go", {st_mode=S_IFREG|0644, st_size=60460, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gtk.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=60460, ...}) = 0
[pid 32619] mmap(NULL, 60460, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2b40000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/check.scm", {st_mode=S_IFREG|0644, st_size=6124, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/check.go", {st_mode=S_IFREG|0644, st_size=9949, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/check.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=9949, ...}) = 0
[pid 32619] mmap(NULL, 9949, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2b3d000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnome.scm", {st_mode=S_IFREG|0644, st_size=139621, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnome.go", {st_mode=S_IFREG|0644, st_size=215170, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gnome.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=215170, ...}) = 0
[pid 32619] mmap(NULL, 215170, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2b08000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/glib-or-gtk.scm", {st_mode=S_IFREG|0644, st_size=8756, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/glib-or-gtk.go", {st_mode=S_IFREG|0644, st_size=8594, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/build-system/glib-or-gtk.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=8594, ...}) = 0
[pid 32619] mmap(NULL, 8594, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2b05000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cups.scm", {st_mode=S_IFREG|0644, st_size=12312, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cups.go", {st_mode=S_IFREG|0644, st_size=13111, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/cups.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=13111, ...}) = 0
[pid 32619] mmap(NULL, 13111, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2b01000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fonts.scm", {st_mode=S_IFREG|0644, st_size=27615, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fonts.go", {st_mode=S_IFREG|0644, st_size=31925, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/fonts.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=31925, ...}) = 0
[pid 32619] mmap(NULL, 31925, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2af9000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/zip.scm", {st_mode=S_IFREG|0644, st_size=7552, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/zip.go", {st_mode=S_IFREG|0644, st_size=11102, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/zip.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=11102, ...}) = 0
[pid 32619] mmap(NULL, 11102, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2af6000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pdf.scm", {st_mode=S_IFREG|0644, st_size=20638, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pdf.go", {st_mode=S_IFREG|0644, st_size=32110, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/pdf.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=32110, ...}) = 0
[pid 32619] mmap(NULL, 32110, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2aee000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/djvu.scm", {st_mode=S_IFREG|0644, st_size=1688, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/djvu.go", {st_mode=S_IFREG|0644, st_size=2889, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/djvu.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=2889, ...}) = 0
[pid 32619] mmap(NULL, 2889, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2aed000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/backup.scm", {st_mode=S_IFREG|0644, st_size=13937, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/backup.go", {st_mode=S_IFREG|0644, st_size=21207, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/backup.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=21207, ...}) = 0
[pid 32619] mmap(NULL, 21207, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ae7000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x2d9f000)              = 0x2d9f000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mcrypt.scm", {st_mode=S_IFREG|0644, st_size=4288, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mcrypt.go", {st_mode=S_IFREG|0644, st_size=7417, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/mcrypt.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=7417, ...}) = 0
[pid 32619] mmap(NULL, 7417, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ae5000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pcre.scm", {st_mode=S_IFREG|0644, st_size=2431, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pcre.go", {st_mode=S_IFREG|0644, st_size=3577, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/pcre.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3577, ...}) = 0
[pid 32619] mmap(NULL, 3577, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ae4000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rsync.scm", {st_mode=S_IFREG|0644, st_size=3114, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rsync.go", {st_mode=S_IFREG|0644, st_size=5387, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/rsync.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5387, ...}) = 0
[pid 32619] mmap(NULL, 5387, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ae2000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ssh.scm", {st_mode=S_IFREG|0644, st_size=14563, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ssh.go", {st_mode=S_IFREG|0644, st_size=21439, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/ssh.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=21439, ...}) = 0
[pid 32619] mmap(NULL, 21439, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2adc000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/elf.scm", {st_mode=S_IFREG|0644, st_size=5892, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/elf.go", {st_mode=S_IFREG|0644, st_size=8164, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/elf.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=8164, ...}) = 0
[pid 32619] mmap(NULL, 8164, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ada000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lesstif.scm", {st_mode=S_IFREG|0644, st_size=1817, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lesstif.go", {st_mode=S_IFREG|0644, st_size=3116, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/lesstif.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3116, ...}) = 0
[pid 32619] mmap(NULL, 3116, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ad9000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/qt.scm", {st_mode=S_IFREG|0644, st_size=21087, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/qt.go", {st_mode=S_IFREG|0644, st_size=23471, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/qt.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=23471, ...}) = 0
[pid 32619] mmap(NULL, 23471, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ad3000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnuzilla.scm", {st_mode=S_IFREG|0644, st_size=19381, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnuzilla.go", {st_mode=S_IFREG|0644, st_size=19205, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gnuzilla.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=19205, ...}) = 0
[pid 32619] mmap(NULL, 19205, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ace000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gstreamer.scm", {st_mode=S_IFREG|0644, st_size=11683, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gstreamer.go", {st_mode=S_IFREG|0644, st_size=17662, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gstreamer.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=17662, ...}) = 0
[pid 32619] mmap(NULL, 17662, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ac9000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cdrom.scm", {st_mode=S_IFREG|0644, st_size=13444, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cdrom.go", {st_mode=S_IFREG|0644, st_size=20599, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/cdrom.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=20599, ...}) = 0
[pid 32619] mmap(NULL, 20599, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ac3000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/man.scm", {st_mode=S_IFREG|0644, st_size=8375, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/man.go", {st_mode=S_IFREG|0644, st_size=12985, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/man.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=12985, ...}) = 0
[pid 32619] mmap(NULL, 12985, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2abf000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x2daf000)              = 0x2daf000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/less.scm", {st_mode=S_IFREG|0644, st_size=1883, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/less.go", {st_mode=S_IFREG|0644, st_size=3081, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/less.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3081, ...}) = 0
[pid 32619] mmap(NULL, 3081, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2abe000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lynx.scm", {st_mode=S_IFREG|0644, st_size=3615, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lynx.go", {st_mode=S_IFREG|0644, st_size=5001, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/lynx.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5001, ...}) = 0
[pid 32619] mmap(NULL, 5001, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2abc000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wget.scm", {st_mode=S_IFREG|0644, st_size=2403, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wget.go", {st_mode=S_IFREG|0644, st_size=3737, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/wget.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3737, ...}) = 0
[pid 32619] mmap(NULL, 3737, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2abb000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xiph.scm", {st_mode=S_IFREG|0644, st_size=15435, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xiph.go", {st_mode=S_IFREG|0644, st_size=24477, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/xiph.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=24477, ...}) = 0
[pid 32619] mmap(NULL, 24477, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ab5000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/doxygen.scm", {st_mode=S_IFREG|0644, st_size=2980, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/doxygen.go", {st_mode=S_IFREG|0644, st_size=4308, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/doxygen.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4308, ...}) = 0
[pid 32619] mmap(NULL, 4308, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ab3000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pulseaudio.scm", {st_mode=S_IFREG|0644, st_size=8725, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pulseaudio.go", {st_mode=S_IFREG|0644, st_size=11988, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/pulseaudio.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=11988, ...}) = 0
[pid 32619] mmap(NULL, 11988, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2ab0000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libcanberra.scm", {st_mode=S_IFREG|0644, st_size=4837, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libcanberra.go", {st_mode=S_IFREG|0644, st_size=6684, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/libcanberra.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6684, ...}) = 0
[pid 32619] mmap(NULL, 6684, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2aae000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x311b000)              = 0x311b000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mp3.scm", {st_mode=S_IFREG|0644, st_size=17909, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mp3.go", {st_mode=S_IFREG|0644, st_size=30895, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/mp3.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=30895, ...}) = 0
[pid 32619] mmap(NULL, 30895, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2aa6000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/yasm.scm", {st_mode=S_IFREG|0644, st_size=2114, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/yasm.go", {st_mode=S_IFREG|0644, st_size=3422, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/yasm.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3422, ...}) = 0
[pid 32619] mmap(NULL, 3422, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2aa5000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libevent.scm", {st_mode=S_IFREG|0644, st_size=5139, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libevent.go", {st_mode=S_IFREG|0644, st_size=8069, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/libevent.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=8069, ...}) = 0
[pid 32619] mmap(NULL, 8069, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2aa3000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libreoffice.scm", {st_mode=S_IFREG|0644, st_size=30689, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libreoffice.go", {st_mode=S_IFREG|0644, st_size=51161, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/libreoffice.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=51161, ...}) = 0
[pid 32619] mmap(NULL, 51161, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a96000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x312b000)              = 0x312b000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/boost.scm", {st_mode=S_IFREG|0644, st_size=5255, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/boost.go", {st_mode=S_IFREG|0644, st_size=7172, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/boost.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=7172, ...}) = 0
[pid 32619] mmap(NULL, 7172, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a94000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tcsh.scm", {st_mode=S_IFREG|0644, st_size=3566, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tcsh.go", {st_mode=S_IFREG|0644, st_size=4930, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/tcsh.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4930, ...}) = 0
[pid 32619] mmap(NULL, 4930, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a92000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/icu4c.scm", {st_mode=S_IFREG|0644, st_size=2849, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/icu4c.go", {st_mode=S_IFREG|0644, st_size=4336, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/icu4c.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4336, ...}) = 0
[pid 32619] mmap(NULL, 4336, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a90000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/java.scm", {st_mode=S_IFREG|0644, st_size=36052, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/java.go", {st_mode=S_IFREG|0644, st_size=32820, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/java.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=32820, ...}) = 0
[pid 32619] mmap(NULL, 32820, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a87000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cpio.scm", {st_mode=S_IFREG|0644, st_size=1971, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cpio.go", {st_mode=S_IFREG|0644, st_size=3081, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/cpio.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3081, ...}) = 0
[pid 32619] mmap(NULL, 3081, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a86000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/maths.scm", {st_mode=S_IFREG|0644, st_size=78285, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/maths.go", {st_mode=S_IFREG|0644, st_size=112543, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/maths.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=112543, ...}) = 0
[pid 32619] mmap(NULL, 112543, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a6a000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/guix/svn-download.scm", {st_mode=S_IFREG|0644, st_size=3042, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/svn-download.go", {st_mode=S_IFREG|0644, st_size=29581, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/svn-download.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=29581, ...}) = 0
[pid 32619] mmap(NULL, 29581, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a62000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cmake.scm", {st_mode=S_IFREG|0644, st_size=5623, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cmake.go", {st_mode=S_IFREG|0644, st_size=5986, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/cmake.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5986, ...}) = 0
[pid 32619] mmap(NULL, 5986, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a60000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/file.scm", {st_mode=S_IFREG|0644, st_size=1942, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/file.go", {st_mode=S_IFREG|0644, st_size=2945, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/file.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=2945, ...}) = 0
[pid 32619] mmap(NULL, 2945, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a5f000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fltk.scm", {st_mode=S_IFREG|0644, st_size=5558, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fltk.go", {st_mode=S_IFREG|0644, st_size=8114, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/fltk.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=8114, ...}) = 0
[pid 32619] mmap(NULL, 8114, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a5d000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lisp.scm", {st_mode=S_IFREG|0644, st_size=18690, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lisp.go", {st_mode=S_IFREG|0644, st_size=19122, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/lisp.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=19122, ...}) = 0
[pid 32619] mmap(NULL, 19122, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a58000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x313b000)              = 0x313b000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/texlive.scm", {st_mode=S_IFREG|0644, st_size=12836, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/texlive.go", {st_mode=S_IFREG|0644, st_size=16598, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/texlive.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=16598, ...}) = 0
[pid 32619] mmap(NULL, 16598, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a53000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lua.scm", {st_mode=S_IFREG|0644, st_size=4603, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lua.go", {st_mode=S_IFREG|0644, st_size=7070, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/lua.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=7070, ...}) = 0
[pid 32619] mmap(NULL, 7070, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a51000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ruby.scm", {st_mode=S_IFREG|0644, st_size=50406, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ruby.go", {st_mode=S_IFREG|0644, st_size=107834, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/ruby.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=107834, ...}) = 0
[pid 32619] mmap(NULL, 107834, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a36000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/version-control.scm", {st_mode=S_IFREG|0644, st_size=39736, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/version-control.go", {st_mode=S_IFREG|0644, st_size=52999, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/version-control.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=52999, ...}) = 0
[pid 32619] mmap(NULL, 52999, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a29000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cook.scm", {st_mode=S_IFREG|0644, st_size=3539, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cook.go", {st_mode=S_IFREG|0644, st_size=3985, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/cook.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3985, ...}) = 0
[pid 32619] mmap(NULL, 3985, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a28000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/nano.scm", {st_mode=S_IFREG|0644, st_size=1836, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/nano.go", {st_mode=S_IFREG|0644, st_size=3049, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/nano.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3049, ...}) = 0
[pid 32619] mmap(NULL, 3049, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a27000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/emacs.scm", {st_mode=S_IFREG|0644, st_size=47832, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/emacs.go", {st_mode=S_IFREG|0644, st_size=66868, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/emacs.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=66868, ...}) = 0
[pid 32619] mmap(NULL, 66868, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a16000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/emacs.scm", {st_mode=S_IFREG|0644, st_size=5512, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/emacs.go", {st_mode=S_IFREG|0644, st_size=5629, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/build-system/emacs.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5629, ...}) = 0
[pid 32619] mmap(NULL, 5629, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a14000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/w3m.scm", {st_mode=S_IFREG|0644, st_size=3288, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/w3m.go", {st_mode=S_IFREG|0644, st_size=4558, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/w3m.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4558, ...}) = 0
[pid 32619] mmap(NULL, 4558, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a12000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/swig.scm", {st_mode=S_IFREG|0644, st_size=2885, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/swig.go", {st_mode=S_IFREG|0644, st_size=3273, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/swig.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3273, ...}) = 0
[pid 32619] mmap(NULL, 3273, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a11000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x314b000)              = 0x314b000
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/ruby.scm", {st_mode=S_IFREG|0644, st_size=5093, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/ruby.go", {st_mode=S_IFREG|0644, st_size=5885, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/build-system/ruby.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5885, ...}) = 0
[pid 32619] mmap(NULL, 5885, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a0f000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xdisorg.scm", {st_mode=S_IFREG|0644, st_size=23950, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xdisorg.go", {st_mode=S_IFREG|0644, st_size=40935, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/xdisorg.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=40935, ...}) = 0
[pid 32619] mmap(NULL, 40935, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a05000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libffcall.scm", {st_mode=S_IFREG|0644, st_size=1901, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libffcall.go", {st_mode=S_IFREG|0644, st_size=3094, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/libffcall.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3094, ...}) = 0
[pid 32619] mmap(NULL, 3094, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a04000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/popt.scm", {st_mode=S_IFREG|0644, st_size=3617, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/popt.go", {st_mode=S_IFREG|0644, st_size=5720, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/popt.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5720, ...}) = 0
[pid 32619] mmap(NULL, 5720, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a02000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tbb.scm", {st_mode=S_IFREG|0644, st_size=4094, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tbb.go", {st_mode=S_IFREG|0644, st_size=4804, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/tbb.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4804, ...}) = 0
[pid 32619] mmap(NULL, 4804, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2a00000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wxwidgets.scm", {st_mode=S_IFREG|0644, st_size=3648, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wxwidgets.go", {st_mode=S_IFREG|0644, st_size=5770, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/wxwidgets.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5770, ...}) = 0
[pid 32619] mmap(NULL, 5770, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29fe000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x315b000)              = 0x315b000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/sdl.scm", {st_mode=S_IFREG|0644, st_size=13808, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/sdl.go", {st_mode=S_IFREG|0644, st_size=20577, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/sdl.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=20577, ...}) = 0
[pid 32619] mmap(NULL, 20577, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29f8000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/openldap.scm", {st_mode=S_IFREG|0644, st_size=3186, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/openldap.go", {st_mode=S_IFREG|0644, st_size=4173, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/openldap.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4173, ...}) = 0
[pid 32619] mmap(NULL, 4173, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29f6000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rdf.scm", {st_mode=S_IFREG|0644, st_size=14509, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rdf.go", {st_mode=S_IFREG|0644, st_size=23442, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/rdf.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=23442, ...}) = 0
[pid 32619] mmap(NULL, 23442, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29f0000
[pid 32619] close(12)                   = 0
[pid 32619] open("/proc/self/statm", O_RDONLY) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
[pid 32619] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f29ef000
[pid 32619] read(12, "28558 11177 3469 2 0 16116 0\n", 1024) = 29
[pid 32619] close(12)                   = 0
[pid 32619] munmap(0x7f08f29ef000, 4096) = 0
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 333538822}) = 0
[pid 32619] rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 400) = 3
[pid 32621] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 402 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 401, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 406 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 404, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 403, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 408 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 407, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 410 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 409, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 411, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 412 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 413, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 414 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 415, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 416, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 418 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32619] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 419, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 422 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 421, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 420 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 423, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 424 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 425, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 428 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 429, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 430, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 430, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 432 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 1
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 426, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 433, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 434, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 436 <unfinished ...>
[pid 32620] <... futex resumed> )       = 0
[pid 32619] <... futex resumed> )       = 2
[pid 32621] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 438 <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 439, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 437, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 440, NULL <unfinished ...>
[pid 32620] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 441, NULL <unfinished ...>
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 360908815}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/scanner.scm", {st_mode=S_IFREG|0644, st_size=3145, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/scanner.go", {st_mode=S_IFREG|0644, st_size=4108, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/scanner.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4108, ...}) = 0
[pid 32619] mmap(NULL, 4108, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29ee000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libusb.scm", {st_mode=S_IFREG|0644, st_size=5922, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libusb.go", {st_mode=S_IFREG|0644, st_size=9871, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/libusb.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=9871, ...}) = 0
[pid 32619] mmap(NULL, 9871, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29eb000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x3546000)              = 0x3546000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pciutils.scm", {st_mode=S_IFREG|0644, st_size=3788, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pciutils.go", {st_mode=S_IFREG|0644, st_size=4565, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/pciutils.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4565, ...}) = 0
[pid 32619] mmap(NULL, 4565, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29e9000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/polkit.scm", {st_mode=S_IFREG|0644, st_size=7335, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/polkit.go", {st_mode=S_IFREG|0644, st_size=9187, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/polkit.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=9187, ...}) = 0
[pid 32619] mmap(NULL, 9187, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29e6000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/freedesktop.scm", {st_mode=S_IFREG|0644, st_size=15467, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/freedesktop.go", {st_mode=S_IFREG|0644, st_size=26151, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/freedesktop.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=26151, ...}) = 0
[pid 32619] mmap(NULL, 26151, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29df000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/iso-codes.scm", {st_mode=S_IFREG|0644, st_size=2591, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/iso-codes.go", {st_mode=S_IFREG|0644, st_size=3830, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/iso-codes.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3830, ...}) = 0
[pid 32619] mmap(NULL, 3830, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29de000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lirc.scm", {st_mode=S_IFREG|0644, st_size=2534, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lirc.go", {st_mode=S_IFREG|0644, st_size=4033, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/lirc.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4033, ...}) = 0
[pid 32619] mmap(NULL, 4033, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29dd000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/photo.scm", {st_mode=S_IFREG|0644, st_size=9767, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/photo.go", {st_mode=S_IFREG|0644, st_size=17022, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/photo.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=17022, ...}) = 0
[pid 32619] mmap(NULL, 17022, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29d8000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/graphics.scm", {st_mode=S_IFREG|0644, st_size=12818, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/graphics.go", {st_mode=S_IFREG|0644, st_size=19623, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/graphics.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=19623, ...}) = 0
[pid 32619] mmap(NULL, 19623, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29d3000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xfig.scm", {st_mode=S_IFREG|0644, st_size=9211, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xfig.go", {st_mode=S_IFREG|0644, st_size=9621, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/xfig.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=9621, ...}) = 0
[pid 32619] mmap(NULL, 9621, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29d0000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/geeqie.scm", {st_mode=S_IFREG|0644, st_size=3640, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/geeqie.go", {st_mode=S_IFREG|0644, st_size=5714, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/geeqie.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5714, ...}) = 0
[pid 32619] mmap(NULL, 5714, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29ce000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/webkit.scm", {st_mode=S_IFREG|0644, st_size=6483, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/webkit.go", {st_mode=S_IFREG|0644, st_size=9039, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/webkit.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=9039, ...}) = 0
[pid 32619] mmap(NULL, 9039, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29cb000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/enchant.scm", {st_mode=S_IFREG|0644, st_size=2381, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/enchant.go", {st_mode=S_IFREG|0644, st_size=3716, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/enchant.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3716, ...}) = 0
[pid 32619] mmap(NULL, 3716, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29ca000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/aspell.scm", {st_mode=S_IFREG|0644, st_size=4647, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/aspell.go", {st_mode=S_IFREG|0644, st_size=7546, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/aspell.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=7546, ...}) = 0
[pid 32619] mmap(NULL, 7546, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29c8000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mail.scm", {st_mode=S_IFREG|0644, st_size=36636, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mail.go", {st_mode=S_IFREG|0644, st_size=60103, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/mail.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=60103, ...}) = 0
[pid 32619] mmap(NULL, 60103, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29b9000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gsasl.scm", {st_mode=S_IFREG|0644, st_size=3958, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gsasl.go", {st_mode=S_IFREG|0644, st_size=6968, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gsasl.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6968, ...}) = 0
[pid 32619] mmap(NULL, 6968, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29b7000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/shishi.scm", {st_mode=S_IFREG|0644, st_size=2716, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/shishi.go", {st_mode=S_IFREG|0644, st_size=3715, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/shishi.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3715, ...}) = 0
[pid 32619] mmap(NULL, 3715, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29b6000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/search.scm", {st_mode=S_IFREG|0644, st_size=6135, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/search.go", {st_mode=S_IFREG|0644, st_size=10197, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/search.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=10197, ...}) = 0
[pid 32619] mmap(NULL, 10197, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29b3000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/samba.scm", {st_mode=S_IFREG|0644, st_size=8371, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/samba.go", {st_mode=S_IFREG|0644, st_size=10285, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/samba.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=10285, ...}) = 0
[pid 32619] mmap(NULL, 10285, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29b0000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libunwind.scm", {st_mode=S_IFREG|0644, st_size=2300, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libunwind.go", {st_mode=S_IFREG|0644, st_size=3398, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/libunwind.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3398, ...}) = 0
[pid 32619] mmap(NULL, 3398, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29af000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x3556000)              = 0x3556000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pretty-print.scm", {st_mode=S_IFREG|0644, st_size=9748, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pretty-print.go", {st_mode=S_IFREG|0644, st_size=14821, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/pretty-print.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=14821, ...}) = 0
[pid 32619] mmap(NULL, 14821, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29ab000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gv.scm", {st_mode=S_IFREG|0644, st_size=2206, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gv.go", {st_mode=S_IFREG|0644, st_size=3607, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gv.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3607, ...}) = 0
[pid 32619] mmap(NULL, 3607, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29aa000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fribidi.scm", {st_mode=S_IFREG|0644, st_size=1694, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fribidi.go", {st_mode=S_IFREG|0644, st_size=2932, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/fribidi.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=2932, ...}) = 0
[pid 32619] mmap(NULL, 2932, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29a9000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ocr.scm", {st_mode=S_IFREG|0644, st_size=3592, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ocr.go", {st_mode=S_IFREG|0644, st_size=6114, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/ocr.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6114, ...}) = 0
[pid 32619] mmap(NULL, 6114, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29a7000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/textutils.scm", {st_mode=S_IFREG|0644, st_size=6959, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/textutils.go", {st_mode=S_IFREG|0644, st_size=12534, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/textutils.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=12534, ...}) = 0
[pid 32619] mmap(NULL, 12534, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f29a3000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/statistics.scm", {st_mode=S_IFREG|0644, st_size=33882, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/statistics.go", {st_mode=S_IFREG|0644, st_size=73146, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/statistics.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=73146, ...}) = 0
[pid 32619] mmap(NULL, 73146, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2991000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x3566000)              = 0x3566000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/jemalloc.scm", {st_mode=S_IFREG|0644, st_size=2108, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/jemalloc.go", {st_mode=S_IFREG|0644, st_size=3341, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/jemalloc.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3341, ...}) = 0
[pid 32619] mmap(NULL, 3341, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2990000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/networking.scm", {st_mode=S_IFREG|0644, st_size=7723, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/networking.go", {st_mode=S_IFREG|0644, st_size=13766, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/networking.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=13766, ...}) = 0
[pid 32619] mmap(NULL, 13766, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f298c000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x3576000)              = 0x3576000
[pid 32619] brk(0x3586000)              = 0x3586000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/netpbm.scm", {st_mode=S_IFREG|0644, st_size=6412, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/netpbm.go", {st_mode=S_IFREG|0644, st_size=7345, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/netpbm.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=7345, ...}) = 0
[pid 32619] mmap(NULL, 7345, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f298a000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pth.scm", {st_mode=S_IFREG|0644, st_size=2015, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pth.go", {st_mode=S_IFREG|0644, st_size=3176, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/pth.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3176, ...}) = 0
[pid 32619] mmap(NULL, 3176, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2989000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libftdi.scm", {st_mode=S_IFREG|0644, st_size=1846, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libftdi.go", {st_mode=S_IFREG|0644, st_size=3036, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/libftdi.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3036, ...}) = 0
[pid 32619] mmap(NULL, 3036, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2988000
[pid 32619] close(12)                   = 0
[pid 32619] open("/proc/self/statm", O_RDONLY) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
[pid 32619] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f2987000
[pid 32619] read(12, "29729 12494 3704 2 0 17183 0\n", 1024) = 29
[pid 32619] close(12)                   = 0
[pid 32619] munmap(0x7f08f2987000, 4096) = 0
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 402473348}) = 0
[pid 32619] rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 444) = 3
[pid 32621] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 446 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 445, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 447, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 448 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 449, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 450, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 451, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 451, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 451, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 451, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 451, NULL <unfinished ...>
[pid 32620] <... futex resumed> )       = 2
[pid 32620] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 454 <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 3
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] <... futex resumed> )       = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 455, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 456 <unfinished ...>
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 1
[pid 32621] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 457, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 458, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 459, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 459, NULL <unfinished ...>
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 433310638}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/slang.scm", {st_mode=S_IFREG|0644, st_size=4467, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/slang.go", {st_mode=S_IFREG|0644, st_size=6784, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/slang.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6784, ...}) = 0
[pid 32619] mmap(NULL, 6784, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2986000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rrdtool.scm", {st_mode=S_IFREG|0644, st_size=3147, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rrdtool.go", {st_mode=S_IFREG|0644, st_size=4604, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/rrdtool.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4604, ...}) = 0
[pid 32619] mmap(NULL, 4604, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2984000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/calendar.scm", {st_mode=S_IFREG|0644, st_size=1930, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/calendar.go", {st_mode=S_IFREG|0644, st_size=3213, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/calendar.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3213, ...}) = 0
[pid 32619] mmap(NULL, 3213, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2983000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/inkscape.scm", {st_mode=S_IFREG|0644, st_size=3222, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/inkscape.go", {st_mode=S_IFREG|0644, st_size=4965, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/inkscape.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4965, ...}) = 0
[pid 32619] mmap(NULL, 4965, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2981000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/hurd.scm", {st_mode=S_IFREG|0644, st_size=7006, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/hurd.go", {st_mode=S_IFREG|0644, st_size=9495, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/hurd.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=9495, ...}) = 0
[pid 32619] mmap(NULL, 9495, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f297e000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/package-management.scm", {st_mode=S_IFREG|0644, st_size=11863, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/package-management.go", {st_mode=S_IFREG|0644, st_size=18286, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/package-management.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=18286, ...}) = 0
[pid 32619] mmap(NULL, 18286, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2979000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/zile.scm", {st_mode=S_IFREG|0644, st_size=2579, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/zile.go", {st_mode=S_IFREG|0644, st_size=4001, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/zile.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4001, ...}) = 0
[pid 32619] mmap(NULL, 4001, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2978000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lsof.scm", {st_mode=S_IFREG|0644, st_size=3601, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lsof.go", {st_mode=S_IFREG|0644, st_size=4789, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/lsof.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4789, ...}) = 0
[pid 32619] mmap(NULL, 4789, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2976000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x3abf000)              = 0x3abf000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/firmware.scm", {st_mode=S_IFREG|0644, st_size=3637, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/firmware.go", {st_mode=S_IFREG|0644, st_size=4713, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/firmware.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4713, ...}) = 0
[pid 32619] mmap(NULL, 4713, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2974000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cross-base.scm", {st_mode=S_IFREG|0644, st_size=15752, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cross-base.go", {st_mode=S_IFREG|0644, st_size=20313, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/cross-base.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=20313, ...}) = 0
[pid 32619] mmap(NULL, 20313, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f296f000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/commencement.scm", {st_mode=S_IFREG|0644, st_size=37971, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/commencement.go", {st_mode=S_IFREG|0644, st_size=39909, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/commencement.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=39909, ...}) = 0
[pid 32619] mmap(NULL, 39909, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2965000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/ath9k-htc-firmware-binutils.patch", {st_mode=S_IFREG|0644, st_size=743842, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/services.scm", {st_mode=S_IFREG|0644, st_size=2502, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/services.go", {st_mode=S_IFREG|0644, st_size=56296, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/services.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=56296, ...}) = 0
[pid 32619] mmap(NULL, 56296, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2957000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/services/dmd.scm", {st_mode=S_IFREG|0644, st_size=3919, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/services/dmd.go", {st_mode=S_IFREG|0644, st_size=6538, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/services/dmd.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6538, ...}) = 0
[pid 32619] mmap(NULL, 6538, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2955000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/services/base.scm", {st_mode=S_IFREG|0644, st_size=38719, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/services/base.go", {st_mode=S_IFREG|0644, st_size=120475, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/services/base.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=120475, ...}) = 0
[pid 32619] mmap(NULL, 120475, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2937000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/services/networking.scm", {st_mode=S_IFREG|0644, st_size=14412, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/services/networking.go", {st_mode=S_IFREG|0644, st_size=19200, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/services/networking.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=19200, ...}) = 0
[pid 32619] mmap(NULL, 19200, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2932000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/system/shadow.scm", {st_mode=S_IFREG|0644, st_size=8759, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/system/shadow.go", {st_mode=S_IFREG|0644, st_size=83288, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/system/shadow.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=83288, ...}) = 0
[pid 32619] mmap(NULL, 83288, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f291d000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x3acf000)              = 0x3acf000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/guile-wm.scm", {st_mode=S_IFREG|0644, st_size=5682, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/guile-wm.go", {st_mode=S_IFREG|0644, st_size=8004, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/guile-wm.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=8004, ...}) = 0
[pid 32619] mmap(NULL, 8004, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f291b000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tor.scm", {st_mode=S_IFREG|0644, st_size=5151, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tor.go", {st_mode=S_IFREG|0644, st_size=8024, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/tor.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=8024, ...}) = 0
[pid 32619] mmap(NULL, 8024, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2919000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/messaging.scm", {st_mode=S_IFREG|0644, st_size=19470, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/messaging.go", {st_mode=S_IFREG|0644, st_size=28634, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/messaging.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=28634, ...}) = 0
[pid 32619] mmap(NULL, 28634, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2912000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ntp.scm", {st_mode=S_IFREG|0644, st_size=4488, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ntp.go", {st_mode=S_IFREG|0644, st_size=6473, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/ntp.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6473, ...}) = 0
[pid 32619] mmap(NULL, 6473, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2910000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wicd.scm", {st_mode=S_IFREG|0644, st_size=8797, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wicd.go", {st_mode=S_IFREG|0644, st_size=9012, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/wicd.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=9012, ...}) = 0
[pid 32619] mmap(NULL, 9012, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f290d000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/system/linux.scm", {st_mode=S_IFREG|0644, st_size=7555, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/system/linux.go", {st_mode=S_IFREG|0644, st_size=65664, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/system/linux.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=65664, ...}) = 0
[pid 32619] mmap(NULL, 65664, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f28fc000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lsh.scm", {st_mode=S_IFREG|0644, st_size=5656, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lsh.go", {st_mode=S_IFREG|0644, st_size=7285, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/lsh.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=7285, ...}) = 0
[pid 32619] mmap(NULL, 7285, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f28fa000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/system/grub.scm", {st_mode=S_IFREG|0644, st_size=8410, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/system/grub.go", {st_mode=S_IFREG|0644, st_size=114045, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/system/grub.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=114045, ...}) = 0
[pid 32619] mmap(NULL, 114045, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f28de000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/artwork.scm", {st_mode=S_IFREG|0644, st_size=1338, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/artwork.go", {st_mode=S_IFREG|0644, st_size=1179, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/artwork.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=1179, ...}) = 0
[pid 32619] mmap(NULL, 1179, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f28dd000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/system/nss.scm", {st_mode=S_IFREG|0644, st_size=8135, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/system/nss.go", {st_mode=S_IFREG|0644, st_size=112658, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/system/nss.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=112658, ...}) = 0
[pid 32619] mmap(NULL, 112658, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f28c1000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/system/locale.scm", {st_mode=S_IFREG|0644, st_size=4995, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/system/locale.go", {st_mode=S_IFREG|0644, st_size=36519, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/system/locale.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=36519, ...}) = 0
[pid 32619] mmap(NULL, 36519, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f28b8000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/system/linux-initrd.scm", {st_mode=S_IFREG|0644, st_size=9789, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/system/linux-initrd.go", {st_mode=S_IFREG|0644, st_size=11242, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/system/linux-initrd.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=11242, ...}) = 0
[pid 32619] mmap(NULL, 11242, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f28b5000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/make-bootstrap.scm", {st_mode=S_IFREG|0644, st_size=29725, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/make-bootstrap.go", {st_mode=S_IFREG|0644, st_size=33494, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/make-bootstrap.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=33494, ...}) = 0
[pid 32619] mmap(NULL, 33494, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f28ac000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x3adf000)              = 0x3adf000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/guile-relocatable.patch", {st_mode=S_IFREG|0644, st_size=2544, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/guile-default-utf8.patch", {st_mode=S_IFREG|0644, st_size=4524, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/guile-linux-syscalls.patch", {st_mode=S_IFREG|0644, st_size=7863, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/guile-arm-fixes.patch", {st_mode=S_IFREG|0644, st_size=7391, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages", {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFDIR|0755, st_size=20480, ...}) = 0
[pid 32619] getdents(12, /* 648 entries */, 32768) = 21544
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/valgrind.scm", {st_mode=S_IFREG|0644, st_size=3014, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/idutils.go", {st_mode=S_IFREG|0644, st_size=3340, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/textutils.go", {st_mode=S_IFREG|0644, st_size=12534, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rdesktop.scm", {st_mode=S_IFREG|0644, st_size=2362, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gdbm.go", {st_mode=S_IFREG|0644, st_size=3049, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/python.go", {st_mode=S_IFREG|0644, st_size=370269, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mpd.go", {st_mode=S_IFREG|0644, st_size=14576, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnu-pw-mgr.go", {st_mode=S_IFREG|0644, st_size=3255, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/miscfiles.scm", {st_mode=S_IFREG|0644, st_size=1819, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dvtm.go", {st_mode=S_IFREG|0644, st_size=3435, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ocaml.scm", {st_mode=S_IFREG|0644, st_size=22538, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libunwind.scm", {st_mode=S_IFREG|0644, st_size=2300, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/geeqie.scm", {st_mode=S_IFREG|0644, st_size=3640, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tbb.go", {st_mode=S_IFREG|0644, st_size=4804, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/groff.scm", {st_mode=S_IFREG|0644, st_size=2381, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/java.go", {st_mode=S_IFREG|0644, st_size=32820, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/image.scm", {st_mode=S_IFREG|0644, st_size=24245, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/moreutils.scm", {st_mode=S_IFREG|0644, st_size=2677, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/parallel.scm", {st_mode=S_IFREG|0644, st_size=1875, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xfce.go", {st_mode=S_IFREG|0644, st_size=42721, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/acl.go", {st_mode=S_IFREG|0644, st_size=3890, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/messaging.scm", {st_mode=S_IFREG|0644, st_size=19470, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/onc-rpc.scm", {st_mode=S_IFREG|0644, st_size=2264, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/sawfish.scm", {st_mode=S_IFREG|0644, st_size=6926, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/openssl.go", {st_mode=S_IFREG|0644, st_size=7026, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/abiword.scm", {st_mode=S_IFREG|0644, st_size=4686, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/scanner.go", {st_mode=S_IFREG|0644, st_size=4108, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/video.go", {st_mode=S_IFREG|0644, st_size=64217, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libevent.go", {st_mode=S_IFREG|0644, st_size=8069, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/zile.go", {st_mode=S_IFREG|0644, st_size=4001, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/kde-frameworks.go", {st_mode=S_IFREG|0644, st_size=5914, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/samba.scm", {st_mode=S_IFREG|0644, st_size=8371, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/debug.go", {st_mode=S_IFREG|0644, st_size=14234, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/acct.go", {st_mode=S_IFREG|0644, st_size=2881, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fontutils.scm", {st_mode=S_IFREG|0644, st_size=16383, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gl.go", {st_mode=S_IFREG|0644, st_size=31746, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/moe.scm", {st_mode=S_IFREG|0644, st_size=2148, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/photo.go", {st_mode=S_IFREG|0644, st_size=17022, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/guile-wm.scm", {st_mode=S_IFREG|0644, st_size=5682, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dc.scm", {st_mode=S_IFREG|0644, st_size=2176, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lxqt.go", {st_mode=S_IFREG|0644, st_size=9843, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/game-development.scm", {st_mode=S_IFREG|0644, st_size=8971, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/plotutils.scm", {st_mode=S_IFREG|0644, st_size=6660, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/moreutils.go", {st_mode=S_IFREG|0644, st_size=4206, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ftp.scm", {st_mode=S_IFREG|0644, st_size=6161, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tmux.scm", {st_mode=S_IFREG|0644, st_size=1982, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/synergy.scm", {st_mode=S_IFREG|0644, st_size=4601, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xnee.scm", {st_mode=S_IFREG|0644, st_size=2182, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ocaml.go", {st_mode=S_IFREG|0644, st_size=27426, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/apr.scm", {st_mode=S_IFREG|0644, st_size=4300, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gcal.scm", {st_mode=S_IFREG|0644, st_size=1976, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnu-pw-mgr.scm", {st_mode=S_IFREG|0644, st_size=2033, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/kde-frameworks.scm", {st_mode=S_IFREG|0644, st_size=3894, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/make-bootstrap.scm", {st_mode=S_IFREG|0644, st_size=29725, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/enchant.scm", {st_mode=S_IFREG|0644, st_size=2381, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gprolog.go", {st_mode=S_IFREG|0644, st_size=3698, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/openldap.go", {st_mode=S_IFREG|0644, st_size=4173, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/openldap.scm", {st_mode=S_IFREG|0644, st_size=3186, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fonts.scm", {st_mode=S_IFREG|0644, st_size=27615, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/polkit.go", {st_mode=S_IFREG|0644, st_size=9187, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lxde.go", {st_mode=S_IFREG|0644, st_size=15985, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/linux.go", {st_mode=S_IFREG|0644, st_size=143977, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnustep.scm", {st_mode=S_IFREG|0644, st_size=3704, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/imagemagick.scm", {st_mode=S_IFREG|0644, st_size=6586, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/djvu.scm", {st_mode=S_IFREG|0644, st_size=1688, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/sawfish.go", {st_mode=S_IFREG|0644, st_size=10393, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/zsh.scm", {st_mode=S_IFREG|0644, st_size=3401, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/openbox.scm", {st_mode=S_IFREG|0644, st_size=2526, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/task-management.go", {st_mode=S_IFREG|0644, st_size=3788, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/abiword.go", {st_mode=S_IFREG|0644, st_size=6148, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bioinformatics.go", {st_mode=S_IFREG|0644, st_size=168687, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ntp.go", {st_mode=S_IFREG|0644, st_size=6473, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/aarddict.go", {st_mode=S_IFREG|0644, st_size=4277, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/aidc.scm", {st_mode=S_IFREG|0644, st_size=2797, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnupg.go", {st_mode=S_IFREG|0644, st_size=34585, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xorg.scm", {st_mode=S_IFREG|0644, st_size=168469, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/elf.scm", {st_mode=S_IFREG|0644, st_size=5892, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mg.go", {st_mode=S_IFREG|0644, st_size=3802, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/sxiv.go", {st_mode=S_IFREG|0644, st_size=3777, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/feh.scm", {st_mode=S_IFREG|0644, st_size=2643, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/enchant.go", {st_mode=S_IFREG|0644, st_size=3716, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libcanberra.scm", {st_mode=S_IFREG|0644, st_size=4837, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cursynth.scm", {st_mode=S_IFREG|0644, st_size=2180, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/qemu.scm", {st_mode=S_IFREG|0644, st_size=6418, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wdiff.scm", {st_mode=S_IFREG|0644, st_size=2200, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/orpheus.go", {st_mode=S_IFREG|0644, st_size=4964, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/base.scm", {st_mode=S_IFREG|0644, st_size=38479, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/package-management.go", {st_mode=S_IFREG|0644, st_size=18286, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tcsh.go", {st_mode=S_IFREG|0644, st_size=4930, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/irssi.go", {st_mode=S_IFREG|0644, st_size=3946, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ncdu.go", {st_mode=S_IFREG|0644, st_size=3256, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lxqt.scm", {st_mode=S_IFREG|0644, st_size=6553, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tv.scm", {st_mode=S_IFREG|0644, st_size=2463, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fish.go", {st_mode=S_IFREG|0644, st_size=3836, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/swig.go", {st_mode=S_IFREG|0644, st_size=3273, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnuzilla.scm", {st_mode=S_IFREG|0644, st_size=19381, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xml.scm", {st_mode=S_IFREG|0644, st_size=19639, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lynx.scm", {st_mode=S_IFREG|0644, st_size=3615, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/nettle.scm", {st_mode=S_IFREG|0644, st_size=3722, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lsof.scm", {st_mode=S_IFREG|0644, st_size=3601, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/idutils.scm", {st_mode=S_IFREG|0644, st_size=2113, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gimp.go", {st_mode=S_IFREG|0644, st_size=8859, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/webkit.go", {st_mode=S_IFREG|0644, st_size=9039, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/calcurse.go", {st_mode=S_IFREG|0644, st_size=3269, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/yasm.go", {st_mode=S_IFREG|0644, st_size=3422, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dictionaries.scm", {st_mode=S_IFREG|0644, st_size=3415, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cups.go", {st_mode=S_IFREG|0644, st_size=13111, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cdrom.go", {st_mode=S_IFREG|0644, st_size=20599, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/boost.scm", {st_mode=S_IFREG|0644, st_size=5255, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/aidc.go", {st_mode=S_IFREG|0644, st_size=5144, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/miscfiles.go", {st_mode=S_IFREG|0644, st_size=3102, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/skribilo.go", {st_mode=S_IFREG|0644, st_size=6637, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/texinfo.go", {st_mode=S_IFREG|0644, st_size=7982, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/firmware.scm", {st_mode=S_IFREG|0644, st_size=3637, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/zile.scm", {st_mode=S_IFREG|0644, st_size=2579, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/admin.scm", {st_mode=S_IFREG|0644, st_size=50614, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tls.go", {st_mode=S_IFREG|0644, st_size=18343, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnunet.go", {st_mode=S_IFREG|0644, st_size=13836, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/nutrition.scm", {st_mode=S_IFREG|0644, st_size=2986, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/zip.go", {st_mode=S_IFREG|0644, st_size=11102, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bison.scm", {st_mode=S_IFREG|0644, st_size=2410, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/crypto.go", {st_mode=S_IFREG|0644, st_size=2899, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/audacity.go", {st_mode=S_IFREG|0644, st_size=5301, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/docbook.scm", {st_mode=S_IFREG|0644, st_size=8125, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gstreamer.go", {st_mode=S_IFREG|0644, st_size=17662, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/unrtf.scm", {st_mode=S_IFREG|0644, st_size=2956, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/networking.scm", {st_mode=S_IFREG|0644, st_size=7723, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/man.go", {st_mode=S_IFREG|0644, st_size=12985, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wicd.scm", {st_mode=S_IFREG|0644, st_size=8797, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rush.scm", {st_mode=S_IFREG|0644, st_size=1925, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/language.scm", {st_mode=S_IFREG|0644, st_size=16113, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/disk.scm", {st_mode=S_IFREG|0644, st_size=5587, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mpd.scm", {st_mode=S_IFREG|0644, st_size=8869, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/links.go", {st_mode=S_IFREG|0644, st_size=4386, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/java.scm", {st_mode=S_IFREG|0644, st_size=36052, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/linux-libre-i686.conf", {st_mode=S_IFREG|0644, st_size=187594, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ghostscript.scm", {st_mode=S_IFREG|0644, st_size=11743, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/qemu.go", {st_mode=S_IFREG|0644, st_size=7641, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/serveez.go", {st_mode=S_IFREG|0644, st_size=3812, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/kde.go", {st_mode=S_IFREG|0644, st_size=15239, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/databases.scm", {st_mode=S_IFREG|0644, st_size=32066, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/doxygen.scm", {st_mode=S_IFREG|0644, st_size=2980, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tbb.scm", {st_mode=S_IFREG|0644, st_size=4094, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/llvm.go", {st_mode=S_IFREG|0644, st_size=11669, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dvtm.scm", {st_mode=S_IFREG|0644, st_size=2291, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/emacs.go", {st_mode=S_IFREG|0644, st_size=66868, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dns.go", {st_mode=S_IFREG|0644, st_size=6677, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/vpn.scm", {st_mode=S_IFREG|0644, st_size=7049, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/markdown.go", {st_mode=S_IFREG|0644, st_size=6749, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dejagnu.go", {st_mode=S_IFREG|0644, st_size=4196, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mp3.scm", {st_mode=S_IFREG|0644, st_size=17909, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gettext.go", {st_mode=S_IFREG|0644, st_size=8151, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bittorrent.scm", {st_mode=S_IFREG|0644, st_size=5980, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/graphics.scm", {st_mode=S_IFREG|0644, st_size=12818, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cryptsetup.scm", {st_mode=S_IFREG|0644, st_size=2308, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/netpbm.go", {st_mode=S_IFREG|0644, st_size=7345, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/elf.go", {st_mode=S_IFREG|0644, st_size=8164, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/jemalloc.scm", {st_mode=S_IFREG|0644, st_size=2108, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ebook.scm", {st_mode=S_IFREG|0644, st_size=5896, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wicd.go", {st_mode=S_IFREG|0644, st_size=9012, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/zsh.go", {st_mode=S_IFREG|0644, st_size=4208, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/conkeror.scm", {st_mode=S_IFREG|0644, st_size=3761, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wget.scm", {st_mode=S_IFREG|0644, st_size=2403, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/scanner.scm", {st_mode=S_IFREG|0644, st_size=3145, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rdf.go", {st_mode=S_IFREG|0644, st_size=23442, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/graphviz.scm", {st_mode=S_IFREG|0644, st_size=5293, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libdaemon.scm", {st_mode=S_IFREG|0644, st_size=2903, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gkrellm.scm", {st_mode=S_IFREG|0644, st_size=2379, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mcrypt.scm", {st_mode=S_IFREG|0644, st_size=4288, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnupg.scm", {st_mode=S_IFREG|0644, st_size=21251, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libusb.scm", {st_mode=S_IFREG|0644, st_size=5922, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/conkeror.go", {st_mode=S_IFREG|0644, st_size=4855, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/node.go", {st_mode=S_IFREG|0644, st_size=4529, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/check.go", {st_mode=S_IFREG|0644, st_size=9949, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ratpoison.go", {st_mode=S_IFREG|0644, st_size=5694, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/flex.go", {st_mode=S_IFREG|0644, st_size=4796, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/autotools.scm", {st_mode=S_IFREG|0644, st_size=14586, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/curl.scm", {st_mode=S_IFREG|0644, st_size=5498, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/nettle.go", {st_mode=S_IFREG|0644, st_size=5579, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ssh.scm", {st_mode=S_IFREG|0644, st_size=14563, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pkg-config.go", {st_mode=S_IFREG|0644, st_size=7591, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/file.scm", {st_mode=S_IFREG|0644, st_size=1942, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gettext.scm", {st_mode=S_IFREG|0644, st_size=6836, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pkg-config.scm", {st_mode=S_IFREG|0644, st_size=4747, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/machine-learning.go", {st_mode=S_IFREG|0644, st_size=15119, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libdaemon.go", {st_mode=S_IFREG|0644, st_size=5686, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/haskell.go", {st_mode=S_IFREG|0644, st_size=76346, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xorg.go", {st_mode=S_IFREG|0644, st_size=348881, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/uucp.go", {st_mode=S_IFREG|0644, st_size=3441, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ninja.scm", {st_mode=S_IFREG|0644, st_size=3093, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/video.scm", {st_mode=S_IFREG|0644, st_size=47979, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/audio.go", {st_mode=S_IFREG|0644, st_size=117334, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnustep.go", {st_mode=S_IFREG|0644, st_size=4756, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/sdl.scm", {st_mode=S_IFREG|0644, st_size=13808, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/iso-codes.scm", {st_mode=S_IFREG|0644, st_size=2591, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/jrnl.go", {st_mode=S_IFREG|0644, st_size=3609, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/unrtf.go", {st_mode=S_IFREG|0644, st_size=4336, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/image.go", {st_mode=S_IFREG|0644, st_size=39413, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lynx.go", {st_mode=S_IFREG|0644, st_size=5001, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libffcall.go", {st_mode=S_IFREG|0644, st_size=3094, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/openstack.go", {st_mode=S_IFREG|0644, st_size=32010, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/key-mon.go", {st_mode=S_IFREG|0644, st_size=4244, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wordnet.go", {st_mode=S_IFREG|0644, st_size=5245, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/smalltalk.scm", {st_mode=S_IFREG|0644, st_size=2151, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/backup.scm", {st_mode=S_IFREG|0644, st_size=13937, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lesstif.go", {st_mode=S_IFREG|0644, st_size=3116, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/avahi.go", {st_mode=S_IFREG|0644, st_size=6251, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gxmessage.go", {st_mode=S_IFREG|0644, st_size=3406, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gdbm.scm", {st_mode=S_IFREG|0644, st_size=1772, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xml.go", {st_mode=S_IFREG|0644, st_size=35342, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ccache.go", {st_mode=S_IFREG|0644, st_size=3675, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/parallel.go", {st_mode=S_IFREG|0644, st_size=3077, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libftdi.go", {st_mode=S_IFREG|0644, st_size=3036, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tor.scm", {st_mode=S_IFREG|0644, st_size=5151, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/glib.go", {st_mode=S_IFREG|0644, st_size=29806, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/texlive.go", {st_mode=S_IFREG|0644, st_size=16598, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/weechat.scm", {st_mode=S_IFREG|0644, st_size=4087, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/upnp.scm", {st_mode=S_IFREG|0644, st_size=2632, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wm.go", {st_mode=S_IFREG|0644, st_size=13902, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patchutils.go", {st_mode=S_IFREG|0644, st_size=12265, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/compression.scm", {st_mode=S_IFREG|0644, st_size=24773, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/time.go", {st_mode=S_IFREG|0644, st_size=3401, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wv.scm", {st_mode=S_IFREG|0644, st_size=2441, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/stalonetray.scm", {st_mode=S_IFREG|0644, st_size=1938, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rsync.scm", {st_mode=S_IFREG|0644, st_size=3114, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lightning.go", {st_mode=S_IFREG|0644, st_size=2982, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/serveez.scm", {st_mode=S_IFREG|0644, st_size=2400, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/freeipmi.scm", {st_mode=S_IFREG|0644, st_size=2000, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libidn.scm", {st_mode=S_IFREG|0644, st_size=1796, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/avr.scm", {st_mode=S_IFREG|0644, st_size=1984, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wine.scm", {st_mode=S_IFREG|0644, st_size=5398, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/irssi.scm", {st_mode=S_IFREG|0644, st_size=2425, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dc.go", {st_mode=S_IFREG|0644, st_size=3607, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/nvi.scm", {st_mode=S_IFREG|0644, st_size=2863, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/grub.go", {st_mode=S_IFREG|0644, st_size=6583, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/iso-codes.go", {st_mode=S_IFREG|0644, st_size=3830, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gsasl.scm", {st_mode=S_IFREG|0644, st_size=3958, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/less.scm", {st_mode=S_IFREG|0644, st_size=1883, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fonts.go", {st_mode=S_IFREG|0644, st_size=31925, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/textutils.scm", {st_mode=S_IFREG|0644, st_size=6959, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bash.scm", {st_mode=S_IFREG|0644, st_size=14360, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/skribilo.scm", {st_mode=S_IFREG|0644, st_size=3931, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ssh.go", {st_mode=S_IFREG|0644, st_size=21439, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fcitx.go", {st_mode=S_IFREG|0644, st_size=4723, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pv.go", {st_mode=S_IFREG|0644, st_size=3015, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mg.scm", {st_mode=S_IFREG|0644, st_size=2535, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gps.scm", {st_mode=S_IFREG|0644, st_size=5039, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/node.scm", {st_mode=S_IFREG|0644, st_size=3321, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lightning.scm", {st_mode=S_IFREG|0644, st_size=1782, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bdw-gc.go", {st_mode=S_IFREG|0644, st_size=6898, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/aspell.go", {st_mode=S_IFREG|0644, st_size=7546, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/m4.go", {st_mode=S_IFREG|0644, st_size=3759, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libunistring.scm", {st_mode=S_IFREG|0644, st_size=2137, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tls.scm", {st_mode=S_IFREG|0644, st_size=15397, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/readline.scm", {st_mode=S_IFREG|0644, st_size=3839, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/commencement.go", {st_mode=S_IFREG|0644, st_size=39909, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pth.scm", {st_mode=S_IFREG|0644, st_size=2015, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/glib.scm", {st_mode=S_IFREG|0644, st_size=23126, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cyrus-sasl.go", {st_mode=S_IFREG|0644, st_size=3804, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gcc.go", {st_mode=S_IFREG|0644, st_size=35896, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/grue-hunter.scm", {st_mode=S_IFREG|0644, st_size=3696, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnuzilla.go", {st_mode=S_IFREG|0644, st_size=19205, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pem.scm", {st_mode=S_IFREG|0644, st_size=1794, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/search.scm", {st_mode=S_IFREG|0644, st_size=6135, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/curl.go", {st_mode=S_IFREG|0644, st_size=5543, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ocr.go", {st_mode=S_IFREG|0644, st_size=6114, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gxmessage.scm", {st_mode=S_IFREG|0644, st_size=1984, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/maths.scm", {st_mode=S_IFREG|0644, st_size=78285, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/grub.scm", {st_mode=S_IFREG|0644, st_size=5013, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/key-mon.scm", {st_mode=S_IFREG|0644, st_size=2977, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pulseaudio.go", {st_mode=S_IFREG|0644, st_size=11988, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/databases.go", {st_mode=S_IFREG|0644, st_size=49686, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/nano.scm", {st_mode=S_IFREG|0644, st_size=1836, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ci.scm", {st_mode=S_IFREG|0644, st_size=8219, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ninja.go", {st_mode=S_IFREG|0644, st_size=4618, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gprolog.scm", {st_mode=S_IFREG|0644, st_size=2444, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/maths.go", {st_mode=S_IFREG|0644, st_size=112543, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libevent.scm", {st_mode=S_IFREG|0644, st_size=5139, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/shishi.go", {st_mode=S_IFREG|0644, st_size=3715, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/slim.go", {st_mode=S_IFREG|0644, st_size=5233, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libcanberra.go", {st_mode=S_IFREG|0644, st_size=6684, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/certs.scm", {st_mode=S_IFREG|0644, st_size=5221, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wxwidgets.go", {st_mode=S_IFREG|0644, st_size=5770, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ibus.scm", {st_mode=S_IFREG|0644, st_size=8025, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xnee.go", {st_mode=S_IFREG|0644, st_size=3609, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/backup.go", {st_mode=S_IFREG|0644, st_size=21207, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/zip.scm", {st_mode=S_IFREG|0644, st_size=7552, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xdisorg.scm", {st_mode=S_IFREG|0644, st_size=23950, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bash.go", {st_mode=S_IFREG|0644, st_size=18979, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cryptsetup.go", {st_mode=S_IFREG|0644, st_size=3671, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/engineering.go", {st_mode=S_IFREG|0644, st_size=25391, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fish.scm", {st_mode=S_IFREG|0644, st_size=2596, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lsh.scm", {st_mode=S_IFREG|0644, st_size=5656, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ratpoison.scm", {st_mode=S_IFREG|0644, st_size=3909, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/nano.go", {st_mode=S_IFREG|0644, st_size=3049, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/icu4c.scm", {st_mode=S_IFREG|0644, st_size=2849, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libusb.go", {st_mode=S_IFREG|0644, st_size=9871, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pumpio.scm", {st_mode=S_IFREG|0644, st_size=2749, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cyrus-sasl.scm", {st_mode=S_IFREG|0644, st_size=2889, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/seafile.go", {st_mode=S_IFREG|0644, st_size=7058, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/multiprecision.scm", {st_mode=S_IFREG|0644, st_size=3950, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gv.scm", {st_mode=S_IFREG|0644, st_size=2206, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lout.scm", {st_mode=S_IFREG|0644, st_size=5954, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/vtk.go", {st_mode=S_IFREG|0644, st_size=3968, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dunst.scm", {st_mode=S_IFREG|0644, st_size=2717, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/kde.scm", {st_mode=S_IFREG|0644, st_size=8462, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/valgrind.go", {st_mode=S_IFREG|0644, st_size=4097, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libftdi.scm", {st_mode=S_IFREG|0644, st_size=1846, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ftp.go", {st_mode=S_IFREG|0644, st_size=8774, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/smalltalk.go", {st_mode=S_IFREG|0644, st_size=3582, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/slang.go", {st_mode=S_IFREG|0644, st_size=6784, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ocr.scm", {st_mode=S_IFREG|0644, st_size=3592, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/inkscape.scm", {st_mode=S_IFREG|0644, st_size=3222, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/vpn.go", {st_mode=S_IFREG|0644, st_size=12493, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/haskell.scm", {st_mode=S_IFREG|0644, st_size=42485, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/samba.go", {st_mode=S_IFREG|0644, st_size=10285, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wdiff.go", {st_mode=S_IFREG|0644, st_size=3474, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/less.go", {st_mode=S_IFREG|0644, st_size=3081, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/avahi.scm", {st_mode=S_IFREG|0644, st_size=4583, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/qt.scm", {st_mode=S_IFREG|0644, st_size=21087, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/voip.go", {st_mode=S_IFREG|0644, st_size=4144, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/music.scm", {st_mode=S_IFREG|0644, st_size=28729, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnome.scm", {st_mode=S_IFREG|0644, st_size=139621, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libreoffice.scm", {st_mode=S_IFREG|0644, st_size=30689, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnunet.scm", {st_mode=S_IFREG|0644, st_size=9793, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lirc.scm", {st_mode=S_IFREG|0644, st_size=2534, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/markdown.scm", {st_mode=S_IFREG|0644, st_size=4053, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mit-krb5.go", {st_mode=S_IFREG|0644, st_size=5074, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/plotutils.go", {st_mode=S_IFREG|0644, st_size=9641, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/skarnet.go", {st_mode=S_IFREG|0644, st_size=6155, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libunistring.go", {st_mode=S_IFREG|0644, st_size=3041, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xfig.go", {st_mode=S_IFREG|0644, st_size=9621, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gl.scm", {st_mode=S_IFREG|0644, st_size=21679, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/qt.go", {st_mode=S_IFREG|0644, st_size=23471, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/flashing-tools.go", {st_mode=S_IFREG|0644, st_size=8522, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/hugs.scm", {st_mode=S_IFREG|0644, st_size=3602, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rc.scm", {st_mode=S_IFREG|0644, st_size=2811, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/multiprecision.go", {st_mode=S_IFREG|0644, st_size=7012, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libphidget.scm", {st_mode=S_IFREG|0644, st_size=1635, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/julia.scm", {st_mode=S_IFREG|0644, st_size=8347, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/machine-learning.scm", {st_mode=S_IFREG|0644, st_size=12001, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/stalonetray.go", {st_mode=S_IFREG|0644, st_size=3248, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rush.go", {st_mode=S_IFREG|0644, st_size=3105, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lout.go", {st_mode=S_IFREG|0644, st_size=6313, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/djvu.go", {st_mode=S_IFREG|0644, st_size=2889, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dejagnu.scm", {st_mode=S_IFREG|0644, st_size=3612, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libupnp.scm", {st_mode=S_IFREG|0644, st_size=2129, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/package-management.scm", {st_mode=S_IFREG|0644, st_size=11863, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pretty-print.go", {st_mode=S_IFREG|0644, st_size=14821, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gawk.scm", {st_mode=S_IFREG|0644, st_size=3612, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/music.go", {st_mode=S_IFREG|0644, st_size=37613, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/abduco.scm", {st_mode=S_IFREG|0644, st_size=1993, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gperf.go", {st_mode=S_IFREG|0644, st_size=3042, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bittorrent.go", {st_mode=S_IFREG|0644, st_size=8678, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/linux.scm", {st_mode=S_IFREG|0644, st_size=101478, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/boost.go", {st_mode=S_IFREG|0644, st_size=7172, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mc.go", {st_mode=S_IFREG|0644, st_size=4007, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/weechat.go", {st_mode=S_IFREG|0644, st_size=5572, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/aarddict.scm", {st_mode=S_IFREG|0644, st_size=2754, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tre.scm", {st_mode=S_IFREG|0644, st_size=2259, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tmux.go", {st_mode=S_IFREG|0644, st_size=3177, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bdw-gc.scm", {st_mode=S_IFREG|0644, st_size=4223, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gcc.scm", {st_mode=S_IFREG|0644, st_size=31224, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rdesktop.go", {st_mode=S_IFREG|0644, st_size=3437, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/autotools.go", {st_mode=S_IFREG|0644, st_size=19399, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/vtk.scm", {st_mode=S_IFREG|0644, st_size=2764, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/disk.go", {st_mode=S_IFREG|0644, st_size=9653, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rc.go", {st_mode=S_IFREG|0644, st_size=4495, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/protobuf.scm", {st_mode=S_IFREG|0644, st_size=1858, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/attr.go", {st_mode=S_IFREG|0644, st_size=3923, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/uucp.scm", {st_mode=S_IFREG|0644, st_size=2344, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cross-base.go", {st_mode=S_IFREG|0644, st_size=20313, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/swig.scm", {st_mode=S_IFREG|0644, st_size=2885, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/calendar.go", {st_mode=S_IFREG|0644, st_size=3213, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/guile-wm.go", {st_mode=S_IFREG|0644, st_size=8004, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libffi.go", {st_mode=S_IFREG|0644, st_size=3948, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/nutrition.go", {st_mode=S_IFREG|0644, st_size=3942, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/perl.scm", {st_mode=S_IFREG|0644, st_size=239784, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gdb.go", {st_mode=S_IFREG|0644, st_size=5336, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bioinformatics.scm", {st_mode=S_IFREG|0644, st_size=120898, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fribidi.scm", {st_mode=S_IFREG|0644, st_size=1694, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/hugs.go", {st_mode=S_IFREG|0644, st_size=4590, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/engineering.scm", {st_mode=S_IFREG|0644, st_size=17200, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wxwidgets.scm", {st_mode=S_IFREG|0644, st_size=3648, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ccache.scm", {st_mode=S_IFREG|0644, st_size=2262, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ghostscript.go", {st_mode=S_IFREG|0644, st_size=19387, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/password-utils.scm", {st_mode=S_IFREG|0644, st_size=4062, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gcal.go", {st_mode=S_IFREG|0644, st_size=3161, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/popt.go", {st_mode=S_IFREG|0644, st_size=5720, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/compression.go", {st_mode=S_IFREG|0644, st_size=42193, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/popt.scm", {st_mode=S_IFREG|0644, st_size=3617, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mtools.go", {st_mode=S_IFREG|0644, st_size=6178, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/llvm.scm", {st_mode=S_IFREG|0644, st_size=7721, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/onc-rpc.go", {st_mode=S_IFREG|0644, st_size=3404, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/asciidoc.go", {st_mode=S_IFREG|0644, st_size=3429, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libphidget.go", {st_mode=S_IFREG|0644, st_size=2879, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/readline.go", {st_mode=S_IFREG|0644, st_size=5645, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gd.scm", {st_mode=S_IFREG|0644, st_size=5938, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cpio.go", {st_mode=S_IFREG|0644, st_size=3081, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/freeipmi.go", {st_mode=S_IFREG|0644, st_size=3253, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/adns.scm", {st_mode=S_IFREG|0644, st_size=2281, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/geeqie.go", {st_mode=S_IFREG|0644, st_size=5714, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ibus.go", {st_mode=S_IFREG|0644, st_size=11540, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pth.go", {st_mode=S_IFREG|0644, st_size=3176, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cups.scm", {st_mode=S_IFREG|0644, st_size=12312, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/scheme.scm", {st_mode=S_IFREG|0644, st_size=29648, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pumpio.go", {st_mode=S_IFREG|0644, st_size=3982, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/w3m.scm", {st_mode=S_IFREG|0644, st_size=3288, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/groff.go", {st_mode=S_IFREG|0644, st_size=3499, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/polkit.scm", {st_mode=S_IFREG|0644, st_size=7335, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cook.scm", {st_mode=S_IFREG|0644, st_size=3539, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/autogen.scm", {st_mode=S_IFREG|0644, st_size=2729, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/sdl.go", {st_mode=S_IFREG|0644, st_size=20577, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/webkit.scm", {st_mode=S_IFREG|0644, st_size=6483, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/python.scm", {st_mode=S_IFREG|0644, st_size=193992, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/slim.scm", {st_mode=S_IFREG|0644, st_size=3793, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches", {st_mode=S_IFDIR|0755, st_size=24576, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/grue-hunter.go", {st_mode=S_IFREG|0644, st_size=4440, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/suckless.scm", {st_mode=S_IFREG|0644, st_size=7212, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pretty-print.scm", {st_mode=S_IFREG|0644, st_size=9748, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/nvi.go", {st_mode=S_IFREG|0644, st_size=3961, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wget.go", {st_mode=S_IFREG|0644, st_size=3737, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mp3.go", {st_mode=S_IFREG|0644, st_size=30895, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lisp.scm", {st_mode=S_IFREG|0644, st_size=18690, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/hurd.go", {st_mode=S_IFREG|0644, st_size=9495, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/w3m.go", {st_mode=S_IFREG|0644, st_size=4558, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/perl.go", {st_mode=S_IFREG|0644, st_size=534063, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap.scm", {st_mode=S_IFREG|0644, st_size=20761, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xfig.scm", {st_mode=S_IFREG|0644, st_size=9211, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lesstif.scm", {st_mode=S_IFREG|0644, st_size=1817, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/orpheus.scm", {st_mode=S_IFREG|0644, st_size=3800, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/messaging.go", {st_mode=S_IFREG|0644, st_size=28634, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/autogen.go", {st_mode=S_IFREG|0644, st_size=4244, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gtk.go", {st_mode=S_IFREG|0644, st_size=60460, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dictionaries.go", {st_mode=S_IFREG|0644, st_size=4393, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/version-control.scm", {st_mode=S_IFREG|0644, st_size=39736, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/statistics.scm", {st_mode=S_IFREG|0644, st_size=33882, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/crypto.scm", {st_mode=S_IFREG|0644, st_size=1691, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cppi.scm", {st_mode=S_IFREG|0644, st_size=1774, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/games.scm", {st_mode=S_IFREG|0644, st_size=41590, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pcre.scm", {st_mode=S_IFREG|0644, st_size=2431, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/finance.go", {st_mode=S_IFREG|0644, st_size=4716, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libedit.go", {st_mode=S_IFREG|0644, st_size=3228, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pciutils.go", {st_mode=S_IFREG|0644, st_size=4565, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mpi.go", {st_mode=S_IFREG|0644, st_size=8222, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/vim.go", {st_mode=S_IFREG|0644, st_size=4080, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/search.go", {st_mode=S_IFREG|0644, st_size=10197, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/firmware.go", {st_mode=S_IFREG|0644, st_size=4713, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gps.go", {st_mode=S_IFREG|0644, st_size=7081, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lua.go", {st_mode=S_IFREG|0644, st_size=7070, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/figlet.go", {st_mode=S_IFREG|0644, st_size=3203, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/noweb.scm", {st_mode=S_IFREG|0644, st_size=4688, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cmake.go", {st_mode=S_IFREG|0644, st_size=5986, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/admin.go", {st_mode=S_IFREG|0644, st_size=75742, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ed.scm", {st_mode=S_IFREG|0644, st_size=2335, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libedit.scm", {st_mode=S_IFREG|0644, st_size=1971, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pv.scm", {st_mode=S_IFREG|0644, st_size=1853, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mcrypt.go", {st_mode=S_IFREG|0644, st_size=7417, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rrdtool.go", {st_mode=S_IFREG|0644, st_size=4604, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libffcall.scm", {st_mode=S_IFREG|0644, st_size=1901, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/texinfo.scm", {st_mode=S_IFREG|0644, st_size=5079, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gimp.scm", {st_mode=S_IFREG|0644, st_size=6344, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pulseaudio.scm", {st_mode=S_IFREG|0644, st_size=8725, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lisp.go", {st_mode=S_IFREG|0644, st_size=19122, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/slang.scm", {st_mode=S_IFREG|0644, st_size=4467, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gv.go", {st_mode=S_IFREG|0644, st_size=3607, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/attr.scm", {st_mode=S_IFREG|0644, st_size=3059, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/debug.scm", {st_mode=S_IFREG|0644, st_size=11035, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xfce.scm", {st_mode=S_IFREG|0644, st_size=25633, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/screen.scm", {st_mode=S_IFREG|0644, st_size=3698, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/imagemagick.go", {st_mode=S_IFREG|0644, st_size=8644, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/flex.scm", {st_mode=S_IFREG|0644, st_size=3587, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/adns.go", {st_mode=S_IFREG|0644, st_size=3257, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/language.go", {st_mode=S_IFREG|0644, st_size=33449, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/calendar.scm", {st_mode=S_IFREG|0644, st_size=1930, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/emacs.scm", {st_mode=S_IFREG|0644, st_size=47832, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/calcurse.scm", {st_mode=S_IFREG|0644, st_size=2150, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wordnet.scm", {st_mode=S_IFREG|0644, st_size=4337, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/guile.scm", {st_mode=S_IFREG|0644, st_size=24003, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patchutils.scm", {st_mode=S_IFREG|0644, st_size=8429, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/datamash.scm", {st_mode=S_IFREG|0644, st_size=1849, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/audio.scm", {st_mode=S_IFREG|0644, st_size=68828, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mail.scm", {st_mode=S_IFREG|0644, st_size=36636, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ebook.go", {st_mode=S_IFREG|0644, st_size=8135, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lua.scm", {st_mode=S_IFREG|0644, st_size=4603, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/julia.go", {st_mode=S_IFREG|0644, st_size=8750, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/indent.scm", {st_mode=S_IFREG|0644, st_size=2384, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ots.scm", {st_mode=S_IFREG|0644, st_size=3240, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cdrom.scm", {st_mode=S_IFREG|0644, st_size=13444, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/flashing-tools.scm", {st_mode=S_IFREG|0644, st_size=4803, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tre.go", {st_mode=S_IFREG|0644, st_size=3424, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xiph.go", {st_mode=S_IFREG|0644, st_size=24477, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cppi.go", {st_mode=S_IFREG|0644, st_size=2953, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pdf.scm", {st_mode=S_IFREG|0644, st_size=20638, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/datamash.go", {st_mode=S_IFREG|0644, st_size=3069, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ntp.scm", {st_mode=S_IFREG|0644, st_size=4488, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gtk.scm", {st_mode=S_IFREG|0644, st_size=40773, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wine.go", {st_mode=S_IFREG|0644, st_size=7110, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/apl.go", {st_mode=S_IFREG|0644, st_size=3304, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/version-control.go", {st_mode=S_IFREG|0644, st_size=52999, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rdf.scm", {st_mode=S_IFREG|0644, st_size=14509, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnome.go", {st_mode=S_IFREG|0644, st_size=215170, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/inkscape.go", {st_mode=S_IFREG|0644, st_size=4965, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnutls.go", {st_mode=S_IFREG|0644, st_size=9093, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gawk.go", {st_mode=S_IFREG|0644, st_size=4377, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pdf.go", {st_mode=S_IFREG|0644, st_size=32110, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libffi.scm", {st_mode=S_IFREG|0644, st_size=2915, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/finance.scm", {st_mode=S_IFREG|0644, st_size=3205, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/noweb.go", {st_mode=S_IFREG|0644, st_size=6998, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xiph.scm", {st_mode=S_IFREG|0644, st_size=15435, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/audacity.scm", {st_mode=S_IFREG|0644, st_size=3970, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ci.go", {st_mode=S_IFREG|0644, st_size=10487, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/enlightenment.go", {st_mode=S_IFREG|0644, st_size=18891, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/networking.go", {st_mode=S_IFREG|0644, st_size=13766, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wm.scm", {st_mode=S_IFREG|0644, st_size=8516, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gperf.scm", {st_mode=S_IFREG|0644, st_size=1784, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pcre.go", {st_mode=S_IFREG|0644, st_size=3577, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/base.go", {st_mode=S_IFREG|0644, st_size=50417, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lsh.go", {st_mode=S_IFREG|0644, st_size=7285, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/asciidoc.scm", {st_mode=S_IFREG|0644, st_size=2151, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cross-base.scm", {st_mode=S_IFREG|0644, st_size=15752, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ruby.go", {st_mode=S_IFREG|0644, st_size=107834, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dwm.go", {st_mode=S_IFREG|0644, st_size=8457, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cmake.scm", {st_mode=S_IFREG|0644, st_size=5623, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/m4.scm", {st_mode=S_IFREG|0644, st_size=2626, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wv.go", {st_mode=S_IFREG|0644, st_size=3927, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dunst.go", {st_mode=S_IFREG|0644, st_size=4314, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lirc.go", {st_mode=S_IFREG|0644, st_size=4033, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cursynth.go", {st_mode=S_IFREG|0644, st_size=3533, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/certs.go", {st_mode=S_IFREG|0644, st_size=6581, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rsync.go", {st_mode=S_IFREG|0644, st_size=5387, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/hurd.scm", {st_mode=S_IFREG|0644, st_size=7006, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/freedesktop.scm", {st_mode=S_IFREG|0644, st_size=15467, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/man.scm", {st_mode=S_IFREG|0644, st_size=8375, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fltk.go", {st_mode=S_IFREG|0644, st_size=8114, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/links.scm", {st_mode=S_IFREG|0644, st_size=3498, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/guile.go", {st_mode=S_IFREG|0644, st_size=34494, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libunwind.go", {st_mode=S_IFREG|0644, st_size=3398, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libupnp.go", {st_mode=S_IFREG|0644, st_size=3268, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/moe.go", {st_mode=S_IFREG|0644, st_size=3400, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libreoffice.go", {st_mode=S_IFREG|0644, st_size=51161, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/netpbm.scm", {st_mode=S_IFREG|0644, st_size=6412, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/busybox.scm", {st_mode=S_IFREG|0644, st_size=4534, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/yubico.scm", {st_mode=S_IFREG|0644, st_size=2972, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/telephony.go", {st_mode=S_IFREG|0644, st_size=15499, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/algebra.go", {st_mode=S_IFREG|0644, st_size=28693, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/skarnet.scm", {st_mode=S_IFREG|0644, st_size=3951, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tcsh.scm", {st_mode=S_IFREG|0644, st_size=3566, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/telephony.scm", {st_mode=S_IFREG|0644, st_size=8773, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/aspell.scm", {st_mode=S_IFREG|0644, st_size=4647, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ncurses.scm", {st_mode=S_IFREG|0644, st_size=5300, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/indent.go", {st_mode=S_IFREG|0644, st_size=3467, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/busybox.go", {st_mode=S_IFREG|0644, st_size=5132, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/vim.scm", {st_mode=S_IFREG|0644, st_size=2717, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/openbox.go", {st_mode=S_IFREG|0644, st_size=3948, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fontutils.go", {st_mode=S_IFREG|0644, st_size=24847, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/feh.go", {st_mode=S_IFREG|0644, st_size=3837, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cook.go", {st_mode=S_IFREG|0644, st_size=3985, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tcl.go", {st_mode=S_IFREG|0644, st_size=11735, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libsigsegv.go", {st_mode=S_IFREG|0644, st_size=3623, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ots.go", {st_mode=S_IFREG|0644, st_size=4368, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/avr.go", {st_mode=S_IFREG|0644, st_size=3316, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gd.go", {st_mode=S_IFREG|0644, st_size=8956, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pciutils.scm", {st_mode=S_IFREG|0644, st_size=3788, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/code.scm", {st_mode=S_IFREG|0644, st_size=11807, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/enlightenment.scm", {st_mode=S_IFREG|0644, st_size=11230, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/graphics.go", {st_mode=S_IFREG|0644, st_size=19623, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/password-utils.go", {st_mode=S_IFREG|0644, st_size=7577, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/freedesktop.go", {st_mode=S_IFREG|0644, st_size=26151, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libsigsegv.scm", {st_mode=S_IFREG|0644, st_size=2464, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnucash.go", {st_mode=S_IFREG|0644, st_size=6251, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cpio.scm", {st_mode=S_IFREG|0644, st_size=1971, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/yasm.scm", {st_mode=S_IFREG|0644, st_size=2114, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gdb.scm", {st_mode=S_IFREG|0644, st_size=4508, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/yubico.go", {st_mode=S_IFREG|0644, st_size=5820, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mtools.scm", {st_mode=S_IFREG|0644, st_size=4431, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tcl.scm", {st_mode=S_IFREG|0644, st_size=9074, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dns.scm", {st_mode=S_IFREG|0644, st_size=4543, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/abduco.go", {st_mode=S_IFREG|0644, st_size=3347, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/figlet.scm", {st_mode=S_IFREG|0644, st_size=1797, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/commencement.scm", {st_mode=S_IFREG|0644, st_size=37971, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mit-krb5.scm", {st_mode=S_IFREG|0644, st_size=3920, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/game-development.go", {st_mode=S_IFREG|0644, st_size=14443, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/statistics.go", {st_mode=S_IFREG|0644, st_size=73146, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/web.scm", {st_mode=S_IFREG|0644, st_size=120188, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ld-wrapper.in", {st_mode=S_IFREG|0644, st_size=9012, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/upnp.go", {st_mode=S_IFREG|0644, st_size=3790, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gstreamer.scm", {st_mode=S_IFREG|0644, st_size=11683, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap.go", {st_mode=S_IFREG|0644, st_size=24223, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/linux-libre-x86_64.conf", {st_mode=S_IFREG|0644, st_size=183434, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/shishi.scm", {st_mode=S_IFREG|0644, st_size=2716, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/code.go", {st_mode=S_IFREG|0644, st_size=17008, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/suckless.go", {st_mode=S_IFREG|0644, st_size=11488, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/protobuf.go", {st_mode=S_IFREG|0644, st_size=3093, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/conky.scm", {st_mode=S_IFREG|0644, st_size=2957, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ncurses.go", {st_mode=S_IFREG|0644, st_size=5452, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tv.go", {st_mode=S_IFREG|0644, st_size=3847, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/make-bootstrap.go", {st_mode=S_IFREG|0644, st_size=33494, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/scheme.go", {st_mode=S_IFREG|0644, st_size=33177, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/task-management.scm", {st_mode=S_IFREG|0644, st_size=2329, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/algebra.scm", {st_mode=S_IFREG|0644, st_size=17407, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tor.go", {st_mode=S_IFREG|0644, st_size=8024, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/games.go", {st_mode=S_IFREG|0644, st_size=62732, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/apl.scm", {st_mode=S_IFREG|0644, st_size=2065, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/acct.scm", {st_mode=S_IFREG|0644, st_size=1679, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/screen.go", {st_mode=S_IFREG|0644, st_size=5818, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/photo.scm", {st_mode=S_IFREG|0644, st_size=9767, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lxde.scm", {st_mode=S_IFREG|0644, st_size=8922, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/time.scm", {st_mode=S_IFREG|0644, st_size=2286, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fcitx.scm", {st_mode=S_IFREG|0644, st_size=3490, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mpi.scm", {st_mode=S_IFREG|0644, st_size=5925, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gkrellm.go", {st_mode=S_IFREG|0644, st_size=3964, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bison.go", {st_mode=S_IFREG|0644, st_size=3945, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fvwm.scm", {st_mode=S_IFREG|0644, st_size=2352, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/web.go", {st_mode=S_IFREG|0644, st_size=231573, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mail.go", {st_mode=S_IFREG|0644, st_size=60103, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/texlive.scm", {st_mode=S_IFREG|0644, st_size=12836, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lsof.go", {st_mode=S_IFREG|0644, st_size=4789, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnucash.scm", {st_mode=S_IFREG|0644, st_size=4670, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/file.go", {st_mode=S_IFREG|0644, st_size=2945, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/openstack.scm", {st_mode=S_IFREG|0644, st_size=18371, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mc.scm", {st_mode=S_IFREG|0644, st_size=2549, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pem.go", {st_mode=S_IFREG|0644, st_size=3008, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fribidi.go", {st_mode=S_IFREG|0644, st_size=2932, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/acl.scm", {st_mode=S_IFREG|0644, st_size=2488, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/sxiv.scm", {st_mode=S_IFREG|0644, st_size=2459, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fltk.scm", {st_mode=S_IFREG|0644, st_size=5558, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/check.scm", {st_mode=S_IFREG|0644, st_size=6124, ...}) = 0
[pid 32619] brk(0x3aef000)              = 0x3aef000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xdisorg.go", {st_mode=S_IFREG|0644, st_size=40935, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/synergy.go", {st_mode=S_IFREG|0644, st_size=6015, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/icu4c.go", {st_mode=S_IFREG|0644, st_size=4336, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libidn.go", {st_mode=S_IFREG|0644, st_size=2955, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rrdtool.scm", {st_mode=S_IFREG|0644, st_size=3147, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/docbook.go", {st_mode=S_IFREG|0644, st_size=12128, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ncdu.scm", {st_mode=S_IFREG|0644, st_size=2048, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gsasl.go", {st_mode=S_IFREG|0644, st_size=6968, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fvwm.go", {st_mode=S_IFREG|0644, st_size=3865, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/jrnl.scm", {st_mode=S_IFREG|0644, st_size=2227, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ruby.scm", {st_mode=S_IFREG|0644, st_size=50406, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ed.go", {st_mode=S_IFREG|0644, st_size=3551, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/jemalloc.go", {st_mode=S_IFREG|0644, st_size=3341, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/apr.go", {st_mode=S_IFREG|0644, st_size=6048, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/doxygen.go", {st_mode=S_IFREG|0644, st_size=4308, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/graphviz.go", {st_mode=S_IFREG|0644, st_size=7191, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/conky.go", {st_mode=S_IFREG|0644, st_size=4714, ...}) = 0
[pid 32619] getdents(12, /* 0 entries */, 32768) = 0
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/bootstrap", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] getdents(12, /* 6 entries */, 32768) = 184
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/i686-linux", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/mips64el-linux", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/armhf-linux", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] getdents(12, /* 0 entries */, 32768) = 0
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] getdents(12, /* 7 entries */, 32768) = 192
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/guile-2.0.9.tar.xz", {st_mode=S_IFREG|0644, st_size=2885996, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/bash", {st_mode=S_IFREG|0755, st_size=1425560, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/xz", {st_mode=S_IFREG|0755, st_size=927264, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/tar", {st_mode=S_IFREG|0755, st_size=1369912, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/mkdir", {st_mode=S_IFREG|0755, st_size=792448, ...}) = 0
[pid 32619] getdents(12, /* 0 entries */, 32768) = 0
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/armhf-linux", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/bootstrap/armhf-linux", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] getdents(12, /* 7 entries */, 32768) = 192
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/armhf-linux/bash", {st_mode=S_IFREG|0755, st_size=802224, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/armhf-linux/xz", {st_mode=S_IFREG|0755, st_size=502884, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/armhf-linux/guile-2.0.11.tar.xz", {st_mode=S_IFREG|0644, st_size=2717576, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/armhf-linux/tar", {st_mode=S_IFREG|0755, st_size=755356, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/armhf-linux/mkdir", {st_mode=S_IFREG|0755, st_size=401544, ...}) = 0
[pid 32619] getdents(12, /* 0 entries */, 32768) = 0
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/mips64el-linux", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/bootstrap/mips64el-linux", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] getdents(12, /* 7 entries */, 32768) = 192
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/mips64el-linux/guile-2.0.9.tar.xz", {st_mode=S_IFREG|0644, st_size=2734180, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/mips64el-linux/bash", {st_mode=S_IFREG|0755, st_size=1409080, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/mips64el-linux/xz", {st_mode=S_IFREG|0755, st_size=851736, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/mips64el-linux/tar", {st_mode=S_IFREG|0755, st_size=1283708, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/mips64el-linux/mkdir", {st_mode=S_IFREG|0755, st_size=698500, ...}) = 0
[pid 32619] getdents(12, /* 0 entries */, 32768) = 0
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/i686-linux", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/bootstrap/i686-linux", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32619] getdents(12, /* 7 entries */, 32768) = 192
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/i686-linux/guile-2.0.9.tar.xz", {st_mode=S_IFREG|0644, st_size=2656076, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/i686-linux/bash", {st_mode=S_IFREG|0755, st_size=1351732, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/i686-linux/xz", {st_mode=S_IFREG|0755, st_size=861836, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/i686-linux/tar", {st_mode=S_IFREG|0755, st_size=1285420, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/i686-linux/mkdir", {st_mode=S_IFREG|0755, st_size=714316, ...}) = 0
[pid 32619] getdents(12, /* 0 entries */, 32768) = 0
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches", {st_mode=S_IFDIR|0755, st_size=24576, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/patches", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFDIR|0755, st_size=24576, ...}) = 0
[pid 32619] getdents(12, /* 319 entries */, 32768) = 16240
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/luajit-no_ldconfig.patch", {st_mode=S_IFREG|0644, st_size=1115, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/guile-arm-fixes.patch", {st_mode=S_IFREG|0644, st_size=7391, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/icu4c-CVE-2015-1270.patch", {st_mode=S_IFREG|0644, st_size=656, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libunwind-CVE-2015-3239.patch", {st_mode=S_IFREG|0644, st_size=795, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libwmf-CAN-2004-0941.patch", {st_mode=S_IFREG|0644, st_size=656, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/automake-skip-amhello-tests.patch", {st_mode=S_IFREG|0644, st_size=1177, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/alsa-lib-mips-atomic-fix.patch", {st_mode=S_IFREG|0644, st_size=1210, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/python-fix-tests.patch", {st_mode=S_IFREG|0644, st_size=7223, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/abiword-link-plugins-against-backend.patch", {st_mode=S_IFREG|0644, st_size=19932, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/perl-module-pluggable-search.patch", {st_mode=S_IFREG|0644, st_size=966, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/freeimage-CVE-2015-0852.patch", {st_mode=S_IFREG|0644, st_size=4276, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/hydra-disable-darcs-test.patch", {st_mode=S_IFREG|0644, st_size=674, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xf86-video-mga-glibc-2.20.patch", {st_mode=S_IFREG|0644, st_size=829, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/liba52-enable-pic.patch", {st_mode=S_IFREG|0644, st_size=841, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/mupdf-buildsystem-fix.patch", {st_mode=S_IFREG|0644, st_size=2238, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/agg-am_c_prototype.patch", {st_mode=S_IFREG|0644, st_size=738, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/ghostscript-runpath.patch", {st_mode=S_IFREG|0644, st_size=817, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/patchelf-rework-for-arm.patch", {st_mode=S_IFREG|0644, st_size=19717, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/dfu-programmer-fix-libusb.patch", {st_mode=S_IFREG|0644, st_size=1141, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/mpc123-initialize-ao.patch", {st_mode=S_IFREG|0644, st_size=614, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/scotch-test-threading.patch", {st_mode=S_IFREG|0644, st_size=835, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/doxygen-tmake.patch", {st_mode=S_IFREG|0644, st_size=567, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/pidgin-add-search-path.patch", {st_mode=S_IFREG|0644, st_size=887, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/sed-hurd-path-max.patch", {st_mode=S_IFREG|0644, st_size=1142, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/grub-gets-undeclared.patch", {st_mode=S_IFREG|0644, st_size=1670, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/guile-rsvg-pkgconfig.patch", {st_mode=S_IFREG|0644, st_size=598, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/mutt-store-references.patch", {st_mode=S_IFREG|0644, st_size=516, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libarchive-CVE-2013-0211.patch", {st_mode=S_IFREG|0644, st_size=756, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/ninja-tests.patch", {st_mode=S_IFREG|0644, st_size=1445, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/nss-pkgconfig.patch", {st_mode=S_IFREG|0644, st_size=5010, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/fuse-CVE-2015-3202.patch", {st_mode=S_IFREG|0644, st_size=2049, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/icecat-CVE-2015-4492.patch", {st_mode=S_IFREG|0644, st_size=2946, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/unzip-fix-overflows-and-infloop.patch", {st_mode=S_IFREG|0644, st_size=3425, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/abiword-explictly-cast-bools.patch", {st_mode=S_IFREG|0644, st_size=2862, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/zathura-plugindir-environment-variable.patch", {st_mode=S_IFREG|0644, st_size=1132, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/weex-vacopy.patch", {st_mode=S_IFREG|0644, st_size=585, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/findutils-localstatedir.patch", {st_mode=S_IFREG|0644, st_size=467, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/glib-tests-desktop.patch", {st_mode=S_IFREG|0644, st_size=5572, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/slim-session.patch", {st_mode=S_IFREG|0644, st_size=536, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/tar-d_ino_in_dirent-fix.patch", {st_mode=S_IFREG|0644, st_size=766, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/fasthenry-spFactor.patch", {st_mode=S_IFREG|0644, st_size=1622, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/ghostscript-CVE-2015-3228.patch", {st_mode=S_IFREG|0644, st_size=1101, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/pybugz-encode-error.patch", {st_mode=S_IFREG|0644, st_size=665, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/emacs-exec-path.patch", {st_mode=S_IFREG|0644, st_size=630, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/fasthenry-spUtils.patch", {st_mode=S_IFREG|0644, st_size=321, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/glib-tests-prlimit.patch", {st_mode=S_IFREG|0644, st_size=430, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/glib-tests-homedir.patch", {st_mode=S_IFREG|0644, st_size=2109, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/ripperx-missing-file.patch", {st_mode=S_IFREG|0644, st_size=1195, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/abiword-no-include-glib-internal-headers.patch", {st_mode=S_IFREG|0644, st_size=340, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/avrdude-fix-libusb.patch", {st_mode=S_IFREG|0644, st_size=5827, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/glib-tests-timer.patch", {st_mode=S_IFREG|0644, st_size=1060, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/unzip-attribs-overflow.patch", {st_mode=S_IFREG|0644, st_size=754, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/imagemagick-test-segv.patch", {st_mode=S_IFREG|0644, st_size=894, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/liba52-link-with-libm.patch", {st_mode=S_IFREG|0644, st_size=936, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libcanberra-sound-theme-freedesktop.patch", {st_mode=S_IFREG|0644, st_size=837, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/hop-bigloo-4.0b.patch", {st_mode=S_IFREG|0644, st_size=4417, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/diffutils-gets-undeclared.patch", {st_mode=S_IFREG|0644, st_size=2707, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/glibc-bootstrap-system.patch", {st_mode=S_IFREG|0644, st_size=1021, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/gcc-cross-environment-variables.patch", {st_mode=S_IFREG|0644, st_size=1659, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/w3m-fix-compile.patch", {st_mode=S_IFREG|0644, st_size=452, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/icu4c-CVE-2015-4760.patch", {st_mode=S_IFREG|0644, st_size=8262, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xf86-video-intel-compat-api.patch", {st_mode=S_IFREG|0644, st_size=394, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/gobject-introspection-absolute-shlib-path.patch", {st_mode=S_IFREG|0644, st_size=1134, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/pybugz-stty.patch", {st_mode=S_IFREG|0644, st_size=667, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/scheme48-tests.patch", {st_mode=S_IFREG|0644, st_size=1570, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/bigloo-gc-shebangs.patch", {st_mode=S_IFREG|0644, st_size=761, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/wmctrl-64-fix.patch", {st_mode=S_IFREG|0644, st_size=1362, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/cssc-missing-include.patch", {st_mode=S_IFREG|0644, st_size=384, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/m4-gets-undeclared.patch", {st_mode=S_IFREG|0644, st_size=1744, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/avidemux-install-to-lib.patch", {st_mode=S_IFREG|0644, st_size=1435, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/fastcap-mulSetup.patch", {st_mode=S_IFREG|0644, st_size=514, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/valgrind-enable-arm.patch", {st_mode=S_IFREG|0644, st_size=541, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/chmlib-inttypes.patch", {st_mode=S_IFREG|0644, st_size=1787, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/bash-completion-directories.patch", {st_mode=S_IFREG|0644, st_size=1697, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/abiword-pass-no-undefined-to-linker.patch", {st_mode=S_IFREG|0644, st_size=16506, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/abiword-wmf-version-lookup-fix.patch", {st_mode=S_IFREG|0644, st_size=1133, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libwmf-CVE-2007-0455.patch", {st_mode=S_IFREG|0644, st_size=396, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/rsem-makefile.patch", {st_mode=S_IFREG|0644, st_size=25138, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/mit-krb5-init-fix.patch", {st_mode=S_IFREG|0644, st_size=724, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/liba52-set-soname.patch", {st_mode=S_IFREG|0644, st_size=827, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/tvtime-xmltv.patch", {st_mode=S_IFREG|0644, st_size=1005, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/icecat-CVE-2015-4488.patch", {st_mode=S_IFREG|0644, st_size=711, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/net-tools-bitrot.patch", {st_mode=S_IFREG|0644, st_size=3915, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/tvtime-pngoutput.patch", {st_mode=S_IFREG|0644, st_size=418, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/glib-networking-ssl-cert-file.patch", {st_mode=S_IFREG|0644, st_size=993, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/vpnc-script.patch", {st_mode=S_IFREG|0644, st_size=527, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/openssl-c-rehash.patch", {st_mode=S_IFREG|0644, st_size=656, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/clucene-pkgconfig.patch", {st_mode=S_IFREG|0644, st_size=872, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/glibc-ldd-x86_64.patch", {st_mode=S_IFREG|0644, st_size=684, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/boost-mips-avoid-m32.patch", {st_mode=S_IFREG|0644, st_size=666, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/avahi-localstatedir.patch", {st_mode=S_IFREG|0644, st_size=456, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/glibc-locales.patch", {st_mode=S_IFREG|0644, st_size=1445, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/calibre-drop-unrar.patch", {st_mode=S_IFREG|0644, st_size=2247, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/nvi-db4.patch", {st_mode=S_IFREG|0644, st_size=1067, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/grep-CVE-2015-1345.patch", {st_mode=S_IFREG|0644, st_size=514, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xf86-video-intel-glibc-2.20.patch", {st_mode=S_IFREG|0644, st_size=564, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libwmf-CVE-2009-1364.patch", {st_mode=S_IFREG|0644, st_size=360, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/perl-net-amazon-s3-moose-warning.patch", {st_mode=S_IFREG|0644, st_size=671, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/guile-relocatable.patch", {st_mode=S_IFREG|0644, st_size=2544, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/audacity-fix-ffmpeg-binding.patch", {st_mode=S_IFREG|0644, st_size=976, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/openjpeg-CVE-2015-6581.patch", {st_mode=S_IFREG|0644, st_size=2208, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/gitolite-openssh-6.8-compat.patch", {st_mode=S_IFREG|0644, st_size=894, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/python2-pygobject-2-gi-info-type-error-domain.patch", {st_mode=S_IFREG|0644, st_size=1515, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xf86-video-geode-glibc-2.20.patch", {st_mode=S_IFREG|0644, st_size=594, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xfce4-panel-plugins.patch", {st_mode=S_IFREG|0644, st_size=4509, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/hop-linker-flags.patch", {st_mode=S_IFREG|0644, st_size=2649, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/icecat-CVE-2015-4489.patch", {st_mode=S_IFREG|0644, st_size=878, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/abiword-use-proper-png-api.patch", {st_mode=S_IFREG|0644, st_size=6488, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/gmp-arm-asm-nothumb.patch", {st_mode=S_IFREG|0644, st_size=761, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/mumps-build-parallelism.patch", {st_mode=S_IFREG|0644, st_size=413, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/gnutls-doc-fix.patch", {st_mode=S_IFREG|0644, st_size=29843, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/nvi-dbpagesize-binpower.patch", {st_mode=S_IFREG|0644, st_size=1219, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/grub-freetype.patch", {st_mode=S_IFREG|0644, st_size=752, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/plotutils-libpng-jmpbuf.patch", {st_mode=S_IFREG|0644, st_size=746, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libmad-armv7-thumb-pt2.patch", {st_mode=S_IFREG|0644, st_size=1023, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/unzip-CVE-2014-8140.patch", {st_mode=S_IFREG|0644, st_size=1180, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libevent-dns-tests.patch", {st_mode=S_IFREG|0644, st_size=791, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libwmf-CVE-2015-4696.patch", {st_mode=S_IFREG|0644, st_size=591, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libwmf-CVE-2007-3477.patch", {st_mode=S_IFREG|0644, st_size=780, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/nvi-assume-preserve-path.patch", {st_mode=S_IFREG|0644, st_size=768, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/make-impure-dirs.patch", {st_mode=S_IFREG|0644, st_size=1070, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/glibc-hurd-extern-inline.patch", {st_mode=S_IFREG|0644, st_size=969, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/util-linux-tests.patch", {st_mode=S_IFREG|0644, st_size=806, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/bitlbee-configure-doc-fix.patch", {st_mode=S_IFREG|0644, st_size=594, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/patch-hurd-path-max.patch", {st_mode=S_IFREG|0644, st_size=1818, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/wicd-bitrate-none-fix.patch", {st_mode=S_IFREG|0644, st_size=966, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/irrlicht-mesa-10.patch", {st_mode=S_IFREG|0644, st_size=1751, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/icecat-freetype-2.6.patch", {st_mode=S_IFREG|0644, st_size=355, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/gcc-5.0-libvtv-runpath.patch", {st_mode=S_IFREG|0644, st_size=470, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xf86-video-tdfx-remove-mibstore.patch", {st_mode=S_IFREG|0644, st_size=853, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/pt-scotch-build-parallelism.patch", {st_mode=S_IFREG|0644, st_size=515, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libpthread-glibc-preparation.patch", {st_mode=S_IFREG|0644, st_size=4644, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/lftp-dont-save-unknown-host-fingerprint.patch", {st_mode=S_IFREG|0644, st_size=3272, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/mhash-keygen-test-segfault.patch", {st_mode=S_IFREG|0644, st_size=357, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libwmf-CVE-2006-3376.patch", {st_mode=S_IFREG|0644, st_size=753, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/guile-present-coding.patch", {st_mode=S_IFREG|0644, st_size=661, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libtheora-config-guess.patch", {st_mode=S_IFREG|0644, st_size=1147, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/glib-tests-gapplication.patch", {st_mode=S_IFREG|0644, st_size=1376, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/cdparanoia-fpic.patch", {st_mode=S_IFREG|0644, st_size=2371, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/crossmap-allow-system-pysam.patch", {st_mode=S_IFREG|0644, st_size=4468, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/luajit-symlinks.patch", {st_mode=S_IFREG|0644, st_size=876, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libmad-frame-length.patch", {st_mode=S_IFREG|0644, st_size=5178, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/tvtime-gcc41.patch", {st_mode=S_IFREG|0644, st_size=2148, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/aegis-constness-error.patch", {st_mode=S_IFREG|0644, st_size=518, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/aegis-perl-tempdir2.patch", {st_mode=S_IFREG|0644, st_size=611, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/fasthenry-spBuild.patch", {st_mode=S_IFREG|0644, st_size=362, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xf86-video-glint-remove-mibstore.patch", {st_mode=S_IFREG|0644, st_size=735, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libwmf-CVE-2007-3473.patch", {st_mode=S_IFREG|0644, st_size=457, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xf86-video-vmware-glibc-2.20.patch", {st_mode=S_IFREG|0644, st_size=559, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/gobject-introspection-girepository.patch", {st_mode=S_IFREG|0644, st_size=1144, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libsearpc-fix-pc.patch", {st_mode=S_IFREG|0644, st_size=287, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/crda-optional-gcrypt.patch", {st_mode=S_IFREG|0644, st_size=554, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/pixman-pointer-arithmetic.patch", {st_mode=S_IFREG|0644, st_size=771, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/liblxqt-include.patch", {st_mode=S_IFREG|0644, st_size=518, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/openexr-missing-samples.patch", {st_mode=S_IFREG|0644, st_size=925, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/portaudio-audacity-compat.patch", {st_mode=S_IFREG|0644, st_size=9833, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xf86-video-i128-remove-mibstore.patch", {st_mode=S_IFREG|0644, st_size=757, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/aegis-test-fixup-1.patch", {st_mode=S_IFREG|0644, st_size=694, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xmodmap-asprintf.patch", {st_mode=S_IFREG|0644, st_size=375, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/pycairo-wscript.patch", {st_mode=S_IFREG|0644, st_size=989, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/pyqt-configure.patch", {st_mode=S_IFREG|0644, st_size=614, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/module-init-tools-moduledir.patch", {st_mode=S_IFREG|0644, st_size=5092, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/eudev-rules-directory.patch", {st_mode=S_IFREG|0644, st_size=1156, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/lirc-localstatedir.patch", {st_mode=S_IFREG|0644, st_size=397, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/cpufrequtils-fix-aclocal.patch", {st_mode=S_IFREG|0644, st_size=2006, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libmtp-devices.patch", {st_mode=S_IFREG|0644, st_size=23793, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/preseq-1.0.2-link-with-libbam.patch", {st_mode=S_IFREG|0644, st_size=1070, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/icecat-CVE-2015-4473-partial.patch", {st_mode=S_IFREG|0644, st_size=3748, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/polkit-drop-test.patch", {st_mode=S_IFREG|0644, st_size=911, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/luit-posix.patch", {st_mode=S_IFREG|0644, st_size=389, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/unzip-CVE-2014-9636.patch", {st_mode=S_IFREG|0644, st_size=1144, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xf86-video-sis-fix-exa-crash.patch", {st_mode=S_IFREG|0644, st_size=1728, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/qt4-ldflags.patch", {st_mode=S_IFREG|0644, st_size=823, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/fastcap-mulGlobal.patch", {st_mode=S_IFREG|0644, st_size=458, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libbonobo-activation-test-race.patch", {st_mode=S_IFREG|0644, st_size=681, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/expat-CVE-2015-1283.patch", {st_mode=S_IFREG|0644, st_size=2714, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/upower-builddir.patch", {st_mode=S_IFREG|0644, st_size=1867, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libmad-mips-newgcc.patch", {st_mode=S_IFREG|0644, st_size=518, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/vtk-mesa-10.patch", {st_mode=S_IFREG|0644, st_size=1330, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/geoclue-config.patch", {st_mode=S_IFREG|0644, st_size=982, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/patchutils-xfail-gendiff-tests.patch", {st_mode=S_IFREG|0644, st_size=927, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/elfutils-tests-ptrace.patch", {st_mode=S_IFREG|0644, st_size=2023, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libarchive-mtree-filename-length-fix.patch", {st_mode=S_IFREG|0644, st_size=580, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/julia-0.3.10-fix-empty-array.patch", {st_mode=S_IFREG|0644, st_size=431, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/python-disable-ssl-test.patch", {st_mode=S_IFREG|0644, st_size=576, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/slim-sigusr1.patch", {st_mode=S_IFREG|0644, st_size=1165, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/kmod-module-directory.patch", {st_mode=S_IFREG|0644, st_size=2249, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/aegis-test-fixup-2.patch", {st_mode=S_IFREG|0644, st_size=906, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/texi2html-i18n.patch", {st_mode=S_IFREG|0644, st_size=2013, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libssh-CVE-2014-0017.patch", {st_mode=S_IFREG|0644, st_size=2500, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/orpheus-cast-errors-and-includes.patch", {st_mode=S_IFREG|0644, st_size=1494, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/gcc-arm-link-spec-fix.patch", {st_mode=S_IFREG|0644, st_size=742, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/ath9k-htc-firmware-binutils.patch", {st_mode=S_IFREG|0644, st_size=743842, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/ots-no-include-missing-file.patch", {st_mode=S_IFREG|0644, st_size=504, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/wicd-template-instantiation.patch", {st_mode=S_IFREG|0644, st_size=1102, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/liba52-use-mtune-not-mcpu.patch", {st_mode=S_IFREG|0644, st_size=826, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/sdl-libx11-1.6.patch", {st_mode=S_IFREG|0644, st_size=600, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/webkitgtk-2.4-sql-init-string.patch", {st_mode=S_IFREG|0644, st_size=948, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/pulseaudio-fix-mult-test.patch", {st_mode=S_IFREG|0644, st_size=515, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/dbus-localstatedir.patch", {st_mode=S_IFREG|0644, st_size=1213, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/lua51-liblua-so.patch", {st_mode=S_IFREG|0644, st_size=1582, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/icecat-enable-acceleration-and-webgl.patch", {st_mode=S_IFREG|0644, st_size=515, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/clucene-contribs-lib.patch", {st_mode=S_IFREG|0644, st_size=1750, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/mc-fix-ncurses-build.patch", {st_mode=S_IFREG|0644, st_size=1096, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/mplayer2-theora-fix.patch", {st_mode=S_IFREG|0644, st_size=11017, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/bedtools-32bit-compilation.patch", {st_mode=S_IFREG|0644, st_size=5741, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/openssl-runpath.patch", {st_mode=S_IFREG|0644, st_size=748, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/calibre-no-updates-dialog.patch", {st_mode=S_IFREG|0644, st_size=1059, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/ratpoison-shell.patch", {st_mode=S_IFREG|0644, st_size=3308, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/qemu-CVE-2015-6855.patch", {st_mode=S_IFREG|0644, st_size=6950, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/unzip-remove-build-date.patch", {st_mode=S_IFREG|0644, st_size=403, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/doxygen-test.patch", {st_mode=S_IFREG|0644, st_size=1743, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libmad-armv7-thumb-pt1.patch", {st_mode=S_IFREG|0644, st_size=433, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/unzip-CVE-2014-8139.patch", {st_mode=S_IFREG|0644, st_size=1797, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libwmf-CVE-2015-0848+CVE-2015-4588.patch", {st_mode=S_IFREG|0644, st_size=3362, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xf86-video-mach64-glibc-2.20.patch", {st_mode=S_IFREG|0644, st_size=851, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/lua-pkgconfig.patch", {st_mode=S_IFREG|0644, st_size=3305, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/mcron-install.patch", {st_mode=S_IFREG|0644, st_size=1144, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xf86-video-nv-remove-mibstore.patch", {st_mode=S_IFREG|0644, st_size=2662, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/ath9k-htc-firmware-gcc.patch", {st_mode=S_IFREG|0644, st_size=3356, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/unzip-initialize-symlink-flag.patch", {st_mode=S_IFREG|0644, st_size=533, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/glibc-o-largefile.patch", {st_mode=S_IFREG|0644, st_size=779, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/python2-rdflib-drop-sparqlwrapper.patch", {st_mode=S_IFREG|0644, st_size=604, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/flint-ldconfig.patch", {st_mode=S_IFREG|0644, st_size=1462, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/wicd-urwid-1.3.patch", {st_mode=S_IFREG|0644, st_size=776, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/clang-libc-search-path.patch", {st_mode=S_IFREG|0644, st_size=2761, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xf86-video-trident-remove-mibstore.patch", {st_mode=S_IFREG|0644, st_size=751, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/perl-gd-options-passthrough-and-fontconfig.patch", {st_mode=S_IFREG|0644, st_size=2047, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/binutils-loongson-workaround.patch", {st_mode=S_IFREG|0644, st_size=1271, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xfce4-settings-defaults.patch", {st_mode=S_IFREG|0644, st_size=1440, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xf86-video-siliconmotion-remove-mibstore.patch", {st_mode=S_IFREG|0644, st_size=682, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/lm-sensors-hwmon-attrs.patch", {st_mode=S_IFREG|0644, st_size=2116, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/ngircd-no-dns-in-tests.patch", {st_mode=S_IFREG|0644, st_size=10093, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/perl-autosplit-default-time.patch", {st_mode=S_IFREG|0644, st_size=714, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/icu4c-CVE-2014-6585.patch", {st_mode=S_IFREG|0644, st_size=584, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/apr-skip-getservbyname-test.patch", {st_mode=S_IFREG|0644, st_size=900, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/icecat-libvpx-1.4.patch", {st_mode=S_IFREG|0644, st_size=4031, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/readline-link-ncurses.patch", {st_mode=S_IFREG|0644, st_size=695, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xf86-video-ark-remove-mibstore.patch", {st_mode=S_IFREG|0644, st_size=714, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libwmf-CVE-2007-2756.patch", {st_mode=S_IFREG|0644, st_size=619, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/ngircd-handle-zombies.patch", {st_mode=S_IFREG|0644, st_size=848, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/pulseaudio-longer-test-timeout.patch", {st_mode=S_IFREG|0644, st_size=500, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xf86-video-openchrome-glibc-2.20.patch", {st_mode=S_IFREG|0644, st_size=552, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/findutils-absolute-paths.patch", {st_mode=S_IFREG|0644, st_size=1199, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/unzip-allow-greater-hostver-values.patch", {st_mode=S_IFREG|0644, st_size=503, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/texi2html-document-encoding.patch", {st_mode=S_IFREG|0644, st_size=1071, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/jbig2dec-ignore-testtest.patch", {st_mode=S_IFREG|0644, st_size=481, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/fasthenry-spAllocate.patch", {st_mode=S_IFREG|0644, st_size=416, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/gawk-shell.patch", {st_mode=S_IFREG|0644, st_size=1252, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/preseq-1.0.2-install-to-PREFIX.patch", {st_mode=S_IFREG|0644, st_size=914, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libwmf-CVE-2015-4695.patch", {st_mode=S_IFREG|0644, st_size=1921, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/fltk-shared-lib-defines.patch", {st_mode=S_IFREG|0644, st_size=1520, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/openjpeg-use-after-free-fix.patch", {st_mode=S_IFREG|0644, st_size=1822, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/fasthenry-spSolve.patch", {st_mode=S_IFREG|0644, st_size=322, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/tvtime-videodev2.patch", {st_mode=S_IFREG|0644, st_size=443, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/bowtie-fix-makefile.patch", {st_mode=S_IFREG|0644, st_size=767, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/icecat-CVE-2015-4482.patch", {st_mode=S_IFREG|0644, st_size=823, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/flex-bison-tests.patch", {st_mode=S_IFREG|0644, st_size=700, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/superlu-dist-scotchmetis.patch", {st_mode=S_IFREG|0644, st_size=679, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/perl-finance-quote-unuse-mozilla-ca.patch", {st_mode=S_IFREG|0644, st_size=560, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/tidy-CVE-2015-5522+5523.patch", {st_mode=S_IFREG|0644, st_size=1408, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/guile-linux-syscalls.patch", {st_mode=S_IFREG|0644, st_size=7863, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xf86-video-tga-remove-mibstore.patch", {st_mode=S_IFREG|0644, st_size=1061, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/cssc-gets-undeclared.patch", {st_mode=S_IFREG|0644, st_size=757, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xf86-video-ast-remove-mibstore.patch", {st_mode=S_IFREG|0644, st_size=3452, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/unzip-overflow-long-fsize.patch", {st_mode=S_IFREG|0644, st_size=1602, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/gtkglext-disable-disable-deprecated.patch", {st_mode=S_IFREG|0644, st_size=1156, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/binutils-ld-new-dtags.patch", {st_mode=S_IFREG|0644, st_size=573, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/cursynth-wave-rand.patch", {st_mode=S_IFREG|0644, st_size=293, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/slim-config.patch", {st_mode=S_IFREG|0644, st_size=885, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/guile-default-utf8.patch", {st_mode=S_IFREG|0644, st_size=4524, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/gsl-poly-test-fix-pt1.patch", {st_mode=S_IFREG|0644, st_size=2825, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/acl-hurd-path-max.patch", {st_mode=S_IFREG|0644, st_size=1688, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/aegis-perl-tempdir1.patch", {st_mode=S_IFREG|0644, st_size=482, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libarchive-fix-lzo-test-case.patch", {st_mode=S_IFREG|0644, st_size=2965, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/plink-1.07-unclobber-i.patch", {st_mode=S_IFREG|0644, st_size=2006, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libwmf-CVE-2007-3472.patch", {st_mode=S_IFREG|0644, st_size=1655, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/procps-make-3.82.patch", {st_mode=S_IFREG|0644, st_size=368, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/ath9k-htc-firmware-objcopy.patch", {st_mode=S_IFREG|0644, st_size=538, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/mutt-CVE-2014-9116.patch", {st_mode=S_IFREG|0644, st_size=1423, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/patchelf-page-size.patch", {st_mode=S_IFREG|0644, st_size=2464, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/dealii-p4est-interface.patch", {st_mode=S_IFREG|0644, st_size=2703, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xf86-video-sis-update-api.patch", {st_mode=S_IFREG|0644, st_size=4354, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/gnucash-price-quotes-perl.patch", {st_mode=S_IFREG|0644, st_size=1006, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/serf-deflate-buckets-test-fix.patch", {st_mode=S_IFREG|0644, st_size=2545, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libtool-skip-tests2.patch", {st_mode=S_IFREG|0644, st_size=1048, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/cmake-fix-tests.patch", {st_mode=S_IFREG|0644, st_size=1850, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/hwloc-gather-topology-lstopo.patch", {st_mode=S_IFREG|0644, st_size=902, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/libwmf-CVE-2009-3546.patch", {st_mode=S_IFREG|0644, st_size=508, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/wicd-get-selected-profile-fix.patch", {st_mode=S_IFREG|0644, st_size=532, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/xf86-video-r128-glibc-2.20.patch", {st_mode=S_IFREG|0644, st_size=847, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/perl-net-ssleay-disable-ede-test.patch", {st_mode=S_IFREG|0644, st_size=1265, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/soprano-find-clucene.patch", {st_mode=S_IFREG|0644, st_size=956, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/cpio-gets-undeclared.patch", {st_mode=S_IFREG|0644, st_size=1705, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/icecat-CVE-2015-4495.patch", {st_mode=S_IFREG|0644, st_size=1262, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/duplicity-piped-password.patch", {st_mode=S_IFREG|0644, st_size=883, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/perl-no-sys-dirs.patch", {st_mode=S_IFREG|0644, st_size=5450, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/liboop-mips64-deplibs-fix.patch", {st_mode=S_IFREG|0644, st_size=747, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/coreutils-racy-tail-test.patch", {st_mode=S_IFREG|0644, st_size=474, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/gobject-introspection-cc.patch", {st_mode=S_IFREG|0644, st_size=466, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/guile-1.8-cpp-4.5.patch", {st_mode=S_IFREG|0644, st_size=1010, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/perl-tk-x11-discover.patch", {st_mode=S_IFREG|0644, st_size=522, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/unzip-format-secure.patch", {st_mode=S_IFREG|0644, st_size=4435, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/serf-comment-style-fix.patch", {st_mode=S_IFREG|0644, st_size=911, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/duplicity-test_selection-tmp.patch", {st_mode=S_IFREG|0644, st_size=753, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/tar-skip-unreliable-tests.patch", {st_mode=S_IFREG|0644, st_size=873, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/maxima-defsystem-mkdir.patch", {st_mode=S_IFREG|0644, st_size=706, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/tcsh-fix-autotest.patch", {st_mode=S_IFREG|0644, st_size=4116, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/gcc-libvtv-runpath.patch", {st_mode=S_IFREG|0644, st_size=463, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/flashrom-use-libftdi1.patch", {st_mode=S_IFREG|0644, st_size=3004, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/mdadm-gcc-4.9-fix.patch", {st_mode=S_IFREG|0644, st_size=1300, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/icecat-CVE-2015-4491.patch", {st_mode=S_IFREG|0644, st_size=1701, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/unzip-CVE-2014-8141.patch", {st_mode=S_IFREG|0644, st_size=4922, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/gsl-poly-test-fix-pt2.patch", {st_mode=S_IFREG|0644, st_size=876, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/pingus-sdl-libs-config.patch", {st_mode=S_IFREG|0644, st_size=1121, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/ninja-zero-mtime.patch", {st_mode=S_IFREG|0644, st_size=624, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patches/hydra-automake-1.15.patch", {st_mode=S_IFREG|0644, st_size=2503, ...}) = 0
[pid 32619] getdents(12, /* 0 entries */, 32768) = 0
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/aarddict.scm", {st_mode=S_IFREG|0644, st_size=2754, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/aarddict.go", {st_mode=S_IFREG|0644, st_size=4277, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/aarddict.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4277, ...}) = 0
[pid 32619] mmap(NULL, 4277, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f28aa000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/abduco.scm", {st_mode=S_IFREG|0644, st_size=1993, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/abduco.go", {st_mode=S_IFREG|0644, st_size=3347, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/abduco.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3347, ...}) = 0
[pid 32619] mmap(NULL, 3347, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f28a9000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/abiword.scm", {st_mode=S_IFREG|0644, st_size=4686, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/abiword.go", {st_mode=S_IFREG|0644, st_size=6148, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/abiword.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6148, ...}) = 0
[pid 32619] mmap(NULL, 6148, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f28a7000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ots.scm", {st_mode=S_IFREG|0644, st_size=3240, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ots.go", {st_mode=S_IFREG|0644, st_size=4368, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/ots.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4368, ...}) = 0
[pid 32619] mmap(NULL, 4368, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f28a5000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wv.scm", {st_mode=S_IFREG|0644, st_size=2441, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wv.go", {st_mode=S_IFREG|0644, st_size=3927, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/wv.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3927, ...}) = 0
[pid 32619] mmap(NULL, 3927, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f28a4000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/acct.scm", {st_mode=S_IFREG|0644, st_size=1679, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/acct.go", {st_mode=S_IFREG|0644, st_size=2881, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/acct.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=2881, ...}) = 0
[pid 32619] mmap(NULL, 2881, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f28a3000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/adns.scm", {st_mode=S_IFREG|0644, st_size=2281, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/adns.go", {st_mode=S_IFREG|0644, st_size=3257, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/adns.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3257, ...}) = 0
[pid 32619] mmap(NULL, 3257, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f28a2000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/aidc.scm", {st_mode=S_IFREG|0644, st_size=2797, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/aidc.go", {st_mode=S_IFREG|0644, st_size=5144, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/aidc.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5144, ...}) = 0
[pid 32619] mmap(NULL, 5144, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f28a0000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x3aff000)              = 0x3aff000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/apl.scm", {st_mode=S_IFREG|0644, st_size=2065, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/apl.go", {st_mode=S_IFREG|0644, st_size=3304, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/apl.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3304, ...}) = 0
[pid 32619] mmap(NULL, 3304, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f289f000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/audacity.scm", {st_mode=S_IFREG|0644, st_size=3970, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/audacity.go", {st_mode=S_IFREG|0644, st_size=5301, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/audacity.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5301, ...}) = 0
[pid 32619] mmap(NULL, 5301, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f289d000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/autogen.scm", {st_mode=S_IFREG|0644, st_size=2729, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/autogen.go", {st_mode=S_IFREG|0644, st_size=4244, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/autogen.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4244, ...}) = 0
[pid 32619] mmap(NULL, 4244, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f289b000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/avr.scm", {st_mode=S_IFREG|0644, st_size=1984, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/avr.go", {st_mode=S_IFREG|0644, st_size=3316, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/avr.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3316, ...}) = 0
[pid 32619] mmap(NULL, 3316, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f289a000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bioinformatics.scm", {st_mode=S_IFREG|0644, st_size=120898, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bioinformatics.go", {st_mode=S_IFREG|0644, st_size=168687, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/bioinformatics.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=168687, ...}) = 0
[pid 32619] mmap(NULL, 168687, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2870000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/machine-learning.scm", {st_mode=S_IFREG|0644, st_size=12001, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/machine-learning.go", {st_mode=S_IFREG|0644, st_size=15119, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/machine-learning.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=15119, ...}) = 0
[pid 32619] mmap(NULL, 15119, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f286c000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/protobuf.scm", {st_mode=S_IFREG|0644, st_size=1858, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/protobuf.go", {st_mode=S_IFREG|0644, st_size=3093, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/protobuf.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3093, ...}) = 0
[pid 32619] mmap(NULL, 3093, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f286b000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/vim.scm", {st_mode=S_IFREG|0644, st_size=2717, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/vim.go", {st_mode=S_IFREG|0644, st_size=4080, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/vim.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4080, ...}) = 0
[pid 32619] mmap(NULL, 4080, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f286a000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bittorrent.scm", {st_mode=S_IFREG|0644, st_size=5980, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bittorrent.go", {st_mode=S_IFREG|0644, st_size=8678, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/bittorrent.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=8678, ...}) = 0
[pid 32619] mmap(NULL, 8678, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2867000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/busybox.scm", {st_mode=S_IFREG|0644, st_size=4534, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/busybox.go", {st_mode=S_IFREG|0644, st_size=5132, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/busybox.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5132, ...}) = 0
[pid 32619] mmap(NULL, 5132, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2865000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/calcurse.scm", {st_mode=S_IFREG|0644, st_size=2150, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/calcurse.go", {st_mode=S_IFREG|0644, st_size=3269, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/calcurse.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3269, ...}) = 0
[pid 32619] mmap(NULL, 3269, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2864000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x3b0f000)              = 0x3b0f000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ccache.scm", {st_mode=S_IFREG|0644, st_size=2262, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ccache.go", {st_mode=S_IFREG|0644, st_size=3675, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/ccache.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3675, ...}) = 0
[pid 32619] mmap(NULL, 3675, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2863000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/certs.scm", {st_mode=S_IFREG|0644, st_size=5221, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/certs.go", {st_mode=S_IFREG|0644, st_size=6581, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/certs.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6581, ...}) = 0
[pid 32619] mmap(NULL, 6581, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2861000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ci.scm", {st_mode=S_IFREG|0644, st_size=8219, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ci.go", {st_mode=S_IFREG|0644, st_size=10487, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/ci.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=10487, ...}) = 0
[pid 32619] mmap(NULL, 10487, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f285e000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/code.scm", {st_mode=S_IFREG|0644, st_size=11807, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/code.go", {st_mode=S_IFREG|0644, st_size=17008, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/code.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=17008, ...}) = 0
[pid 32619] mmap(NULL, 17008, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2859000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/conkeror.scm", {st_mode=S_IFREG|0644, st_size=3761, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/conkeror.go", {st_mode=S_IFREG|0644, st_size=4855, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/conkeror.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4855, ...}) = 0
[pid 32619] mmap(NULL, 4855, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2857000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/conky.scm", {st_mode=S_IFREG|0644, st_size=2957, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/conky.go", {st_mode=S_IFREG|0644, st_size=4714, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/conky.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4714, ...}) = 0
[pid 32619] mmap(NULL, 4714, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2855000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cppi.scm", {st_mode=S_IFREG|0644, st_size=1774, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cppi.go", {st_mode=S_IFREG|0644, st_size=2953, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/cppi.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=2953, ...}) = 0
[pid 32619] mmap(NULL, 2953, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2854000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/crypto.scm", {st_mode=S_IFREG|0644, st_size=1691, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/crypto.go", {st_mode=S_IFREG|0644, st_size=2899, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/crypto.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=2899, ...}) = 0
[pid 32619] mmap(NULL, 2899, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2853000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cryptsetup.scm", {st_mode=S_IFREG|0644, st_size=2308, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cryptsetup.go", {st_mode=S_IFREG|0644, st_size=3671, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/cryptsetup.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3671, ...}) = 0
[pid 32619] mmap(NULL, 3671, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2852000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cursynth.scm", {st_mode=S_IFREG|0644, st_size=2180, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/cursynth.go", {st_mode=S_IFREG|0644, st_size=3533, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/cursynth.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3533, ...}) = 0
[pid 32619] mmap(NULL, 3533, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2851000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/datamash.scm", {st_mode=S_IFREG|0644, st_size=1849, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/datamash.go", {st_mode=S_IFREG|0644, st_size=3069, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/datamash.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3069, ...}) = 0
[pid 32619] mmap(NULL, 3069, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2850000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dc.scm", {st_mode=S_IFREG|0644, st_size=2176, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dc.go", {st_mode=S_IFREG|0644, st_size=3607, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/dc.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3607, ...}) = 0
[pid 32619] mmap(NULL, 3607, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f284f000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/debug.scm", {st_mode=S_IFREG|0644, st_size=11035, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/debug.go", {st_mode=S_IFREG|0644, st_size=14234, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/debug.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=14234, ...}) = 0
[pid 32619] mmap(NULL, 14234, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f284b000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x3b1f000)              = 0x3b1f000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/llvm.scm", {st_mode=S_IFREG|0644, st_size=7721, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/llvm.go", {st_mode=S_IFREG|0644, st_size=11669, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/llvm.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=11669, ...}) = 0
[pid 32619] mmap(NULL, 11669, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2848000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/qemu.scm", {st_mode=S_IFREG|0644, st_size=6418, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/qemu.go", {st_mode=S_IFREG|0644, st_size=7641, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/qemu.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=7641, ...}) = 0
[pid 32619] mmap(NULL, 7641, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2846000
[pid 32619] close(12)                   = 0
[pid 32619] open("/proc/self/statm", O_RDONLY) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
[pid 32619] mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f08f2845000
[pid 32619] read(12, "31484 14249 4041 2 0 18616 0\n", 1024) = 29
[pid 32619] close(12)                   = 0
[pid 32619] munmap(0x7f08f2845000, 4096) = 0
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 506795083}) = 0
[pid 32619] rt_sigprocmask(SIG_BLOCK, NULL, [], 8) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 462) = 3
[pid 32621] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32620] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32622] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 464 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 463, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 465, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 466 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 468 <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 467, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 470 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 469, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 471, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 472 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 473, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 475, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32619] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 476 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 474 <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 477, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 478 <unfinished ...>
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32619] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 479, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 480, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 481, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 481, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 481, NULL <unfinished ...>
[pid 32620] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAKE_PRIVATE, 2147483647 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32622] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 481, NULL <unfinished ...>
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 481, NULL <unfinished ...>
[pid 32621] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 3
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 481, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 484 <unfinished ...>
[pid 32621] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32619] <... futex resumed> )       = 0
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32620] <... futex resumed> )       = 2
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 485, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 486, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32621] <... futex resumed> )       = 1
[pid 32619] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 487, NULL <unfinished ...>
[pid 32619] <... futex resumed> )       = 0
[pid 32619] futex(0x7f08f7538be4, FUTEX_CMP_REQUEUE_PRIVATE, 1, 2147483647, 0x7f08f7538c60, 490) = 3
[pid 32620] <... futex resumed> )       = 0
[pid 32620] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32620] <... futex resumed> )       = 1
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
[pid 32620] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32622] <... futex resumed> )       = -1 EAGAIN (Resource temporarily unavailable)
[pid 32620] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be0, FUTEX_WAKE_PRIVATE, 1 <unfinished ...>
[pid 32620] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 491, NULL <unfinished ...>
[pid 32622] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 1
[pid 32621] <... futex resumed> )       = 0
[pid 32622] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 492, NULL <unfinished ...>
[pid 32621] futex(0x7f08f7538c60, FUTEX_WAKE_PRIVATE, 1) = 0
[pid 32621] futex(0x7f08f7538be4, FUTEX_WAIT_PRIVATE, 493, NULL <unfinished ...>
[pid 32619] clock_gettime(CLOCK_PROCESS_CPUTIME_ID, {0, 543932044}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dictionaries.scm", {st_mode=S_IFREG|0644, st_size=3415, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dictionaries.go", {st_mode=S_IFREG|0644, st_size=4393, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/dictionaries.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4393, ...}) = 0
[pid 32619] mmap(NULL, 4393, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2844000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/disk.scm", {st_mode=S_IFREG|0644, st_size=5587, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/disk.go", {st_mode=S_IFREG|0644, st_size=9653, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/disk.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=9653, ...}) = 0
[pid 32619] mmap(NULL, 9653, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2841000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dns.scm", {st_mode=S_IFREG|0644, st_size=4543, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dns.go", {st_mode=S_IFREG|0644, st_size=6677, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/dns.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6677, ...}) = 0
[pid 32619] mmap(NULL, 6677, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f283f000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dunst.scm", {st_mode=S_IFREG|0644, st_size=2717, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dunst.go", {st_mode=S_IFREG|0644, st_size=4314, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/dunst.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4314, ...}) = 0
[pid 32619] mmap(NULL, 4314, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f283d000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dvtm.scm", {st_mode=S_IFREG|0644, st_size=2291, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/dvtm.go", {st_mode=S_IFREG|0644, st_size=3435, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/dvtm.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3435, ...}) = 0
[pid 32619] mmap(NULL, 3435, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f283c000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ebook.scm", {st_mode=S_IFREG|0644, st_size=5896, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ebook.go", {st_mode=S_IFREG|0644, st_size=8135, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/ebook.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=8135, ...}) = 0
[pid 32619] mmap(NULL, 8135, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f283a000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/engineering.scm", {st_mode=S_IFREG|0644, st_size=17200, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/engineering.go", {st_mode=S_IFREG|0644, st_size=25391, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/engineering.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=25391, ...}) = 0
[pid 32619] mmap(NULL, 25391, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2833000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/enlightenment.scm", {st_mode=S_IFREG|0644, st_size=11230, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/enlightenment.go", {st_mode=S_IFREG|0644, st_size=18891, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/enlightenment.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=18891, ...}) = 0
[pid 32619] mmap(NULL, 18891, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f282e000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/game-development.scm", {st_mode=S_IFREG|0644, st_size=8971, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/game-development.go", {st_mode=S_IFREG|0644, st_size=14443, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/game-development.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=14443, ...}) = 0
[pid 32619] mmap(NULL, 14443, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f282a000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnunet.scm", {st_mode=S_IFREG|0644, st_size=9793, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnunet.go", {st_mode=S_IFREG|0644, st_size=13836, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gnunet.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=13836, ...}) = 0
[pid 32619] mmap(NULL, 13836, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2826000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fcitx.scm", {st_mode=S_IFREG|0644, st_size=3490, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fcitx.go", {st_mode=S_IFREG|0644, st_size=4723, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/fcitx.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4723, ...}) = 0
[pid 32619] mmap(NULL, 4723, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2824000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/feh.scm", {st_mode=S_IFREG|0644, st_size=2643, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/feh.go", {st_mode=S_IFREG|0644, st_size=3837, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/feh.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3837, ...}) = 0
[pid 32619] mmap(NULL, 3837, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2823000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/figlet.scm", {st_mode=S_IFREG|0644, st_size=1797, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/figlet.go", {st_mode=S_IFREG|0644, st_size=3203, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/figlet.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3203, ...}) = 0
[pid 32619] mmap(NULL, 3203, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2822000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/finance.scm", {st_mode=S_IFREG|0644, st_size=3205, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/finance.go", {st_mode=S_IFREG|0644, st_size=4716, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/finance.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4716, ...}) = 0
[pid 32619] mmap(NULL, 4716, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2820000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/upnp.scm", {st_mode=S_IFREG|0644, st_size=2632, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/upnp.go", {st_mode=S_IFREG|0644, st_size=3790, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/upnp.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3790, ...}) = 0
[pid 32619] mmap(NULL, 3790, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f281f000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fish.scm", {st_mode=S_IFREG|0644, st_size=2596, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fish.go", {st_mode=S_IFREG|0644, st_size=3836, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/fish.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3836, ...}) = 0
[pid 32619] mmap(NULL, 3836, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f281e000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/flashing-tools.scm", {st_mode=S_IFREG|0644, st_size=4803, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/flashing-tools.go", {st_mode=S_IFREG|0644, st_size=8522, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/flashing-tools.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=8522, ...}) = 0
[pid 32619] mmap(NULL, 8522, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f281b000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/freeipmi.scm", {st_mode=S_IFREG|0644, st_size=2000, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/freeipmi.go", {st_mode=S_IFREG|0644, st_size=3253, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/freeipmi.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3253, ...}) = 0
[pid 32619] mmap(NULL, 3253, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f281a000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x4136000)              = 0x4136000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ftp.scm", {st_mode=S_IFREG|0644, st_size=6161, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ftp.go", {st_mode=S_IFREG|0644, st_size=8774, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/ftp.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=8774, ...}) = 0
[pid 32619] mmap(NULL, 8774, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2817000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fvwm.scm", {st_mode=S_IFREG|0644, st_size=2352, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/fvwm.go", {st_mode=S_IFREG|0644, st_size=3865, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/fvwm.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3865, ...}) = 0
[pid 32619] mmap(NULL, 3865, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2816000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/games.scm", {st_mode=S_IFREG|0644, st_size=41590, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/games.go", {st_mode=S_IFREG|0644, st_size=62732, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/games.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=62732, ...}) = 0
[pid 32619] mmap(NULL, 62732, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2806000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gcal.scm", {st_mode=S_IFREG|0644, st_size=1976, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gcal.go", {st_mode=S_IFREG|0644, st_size=3161, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gcal.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3161, ...}) = 0
[pid 32619] mmap(NULL, 3161, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2805000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gimp.scm", {st_mode=S_IFREG|0644, st_size=6344, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gimp.go", {st_mode=S_IFREG|0644, st_size=8859, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gimp.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=8859, ...}) = 0
[pid 32619] mmap(NULL, 8859, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2802000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gkrellm.scm", {st_mode=S_IFREG|0644, st_size=2379, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gkrellm.go", {st_mode=S_IFREG|0644, st_size=3964, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gkrellm.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3964, ...}) = 0
[pid 32619] mmap(NULL, 3964, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2801000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnu-pw-mgr.scm", {st_mode=S_IFREG|0644, st_size=2033, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnu-pw-mgr.go", {st_mode=S_IFREG|0644, st_size=3255, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gnu-pw-mgr.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3255, ...}) = 0
[pid 32619] mmap(NULL, 3255, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2800000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnucash.scm", {st_mode=S_IFREG|0644, st_size=4670, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnucash.go", {st_mode=S_IFREG|0644, st_size=6251, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gnucash.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6251, ...}) = 0
[pid 32619] mmap(NULL, 6251, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27fe000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnustep.scm", {st_mode=S_IFREG|0644, st_size=3704, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gnustep.go", {st_mode=S_IFREG|0644, st_size=4756, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gnustep.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4756, ...}) = 0
[pid 32619] mmap(NULL, 4756, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27fc000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gprolog.scm", {st_mode=S_IFREG|0644, st_size=2444, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gprolog.go", {st_mode=S_IFREG|0644, st_size=3698, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gprolog.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3698, ...}) = 0
[pid 32619] mmap(NULL, 3698, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27fb000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gps.scm", {st_mode=S_IFREG|0644, st_size=5039, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gps.go", {st_mode=S_IFREG|0644, st_size=7081, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gps.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=7081, ...}) = 0
[pid 32619] mmap(NULL, 7081, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27f9000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/grub.scm", {st_mode=S_IFREG|0644, st_size=5013, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/grub.go", {st_mode=S_IFREG|0644, st_size=6583, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/grub.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6583, ...}) = 0
[pid 32619] mmap(NULL, 6583, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27f7000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/grue-hunter.scm", {st_mode=S_IFREG|0644, st_size=3696, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/grue-hunter.go", {st_mode=S_IFREG|0644, st_size=4440, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/grue-hunter.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4440, ...}) = 0
[pid 32619] mmap(NULL, 4440, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27f5000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gxmessage.scm", {st_mode=S_IFREG|0644, st_size=1984, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/gxmessage.go", {st_mode=S_IFREG|0644, st_size=3406, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/gxmessage.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3406, ...}) = 0
[pid 32619] mmap(NULL, 3406, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27f4000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/haskell.scm", {st_mode=S_IFREG|0644, st_size=42485, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/haskell.go", {st_mode=S_IFREG|0644, st_size=76346, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/haskell.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=76346, ...}) = 0
[pid 32619] mmap(NULL, 76346, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27e1000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/haskell.scm", {st_mode=S_IFREG|0644, st_size=5530, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/guix/build-system/haskell.go", {st_mode=S_IFREG|0644, st_size=5911, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/guix/build-system/haskell.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5911, ...}) = 0
[pid 32619] mmap(NULL, 5911, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27df000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libedit.scm", {st_mode=S_IFREG|0644, st_size=1971, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libedit.go", {st_mode=S_IFREG|0644, st_size=3228, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/libedit.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3228, ...}) = 0
[pid 32619] mmap(NULL, 3228, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27de000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/hugs.scm", {st_mode=S_IFREG|0644, st_size=3602, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/hugs.go", {st_mode=S_IFREG|0644, st_size=4590, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/hugs.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4590, ...}) = 0
[pid 32619] mmap(NULL, 4590, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27dc000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ibus.scm", {st_mode=S_IFREG|0644, st_size=8025, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ibus.go", {st_mode=S_IFREG|0644, st_size=11540, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/ibus.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=11540, ...}) = 0
[pid 32619] mmap(NULL, 11540, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27d9000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/idutils.scm", {st_mode=S_IFREG|0644, st_size=2113, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/idutils.go", {st_mode=S_IFREG|0644, st_size=3340, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/idutils.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3340, ...}) = 0
[pid 32619] mmap(NULL, 3340, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27d8000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/irssi.scm", {st_mode=S_IFREG|0644, st_size=2425, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/irssi.go", {st_mode=S_IFREG|0644, st_size=3946, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/irssi.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3946, ...}) = 0
[pid 32619] mmap(NULL, 3946, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27d7000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/jrnl.scm", {st_mode=S_IFREG|0644, st_size=2227, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/jrnl.go", {st_mode=S_IFREG|0644, st_size=3609, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/jrnl.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3609, ...}) = 0
[pid 32619] mmap(NULL, 3609, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27d6000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/julia.scm", {st_mode=S_IFREG|0644, st_size=8347, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/julia.go", {st_mode=S_IFREG|0644, st_size=8750, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/julia.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=8750, ...}) = 0
[pid 32619] mmap(NULL, 8750, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27d3000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/kde-frameworks.scm", {st_mode=S_IFREG|0644, st_size=3894, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/kde-frameworks.go", {st_mode=S_IFREG|0644, st_size=5914, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/kde-frameworks.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5914, ...}) = 0
[pid 32619] mmap(NULL, 5914, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27d1000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/kde.scm", {st_mode=S_IFREG|0644, st_size=8462, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/kde.go", {st_mode=S_IFREG|0644, st_size=15239, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/kde.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=15239, ...}) = 0
[pid 32619] mmap(NULL, 15239, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27cd000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/key-mon.scm", {st_mode=S_IFREG|0644, st_size=2977, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/key-mon.go", {st_mode=S_IFREG|0644, st_size=4244, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/key-mon.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4244, ...}) = 0
[pid 32619] mmap(NULL, 4244, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27cb000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libphidget.scm", {st_mode=S_IFREG|0644, st_size=1635, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libphidget.go", {st_mode=S_IFREG|0644, st_size=2879, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/libphidget.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=2879, ...}) = 0
[pid 32619] mmap(NULL, 2879, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27ca000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libupnp.scm", {st_mode=S_IFREG|0644, st_size=2129, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/libupnp.go", {st_mode=S_IFREG|0644, st_size=3268, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/libupnp.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3268, ...}) = 0
[pid 32619] mmap(NULL, 3268, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27c9000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lightning.scm", {st_mode=S_IFREG|0644, st_size=1782, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lightning.go", {st_mode=S_IFREG|0644, st_size=2982, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/lightning.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=2982, ...}) = 0
[pid 32619] mmap(NULL, 2982, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27c8000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/links.scm", {st_mode=S_IFREG|0644, st_size=3498, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/links.go", {st_mode=S_IFREG|0644, st_size=4386, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/links.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4386, ...}) = 0
[pid 32619] mmap(NULL, 4386, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27c6000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lout.scm", {st_mode=S_IFREG|0644, st_size=5954, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lout.go", {st_mode=S_IFREG|0644, st_size=6313, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/lout.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6313, ...}) = 0
[pid 32619] mmap(NULL, 6313, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27c4000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lxde.scm", {st_mode=S_IFREG|0644, st_size=8922, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lxde.go", {st_mode=S_IFREG|0644, st_size=15985, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/lxde.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=15985, ...}) = 0
[pid 32619] mmap(NULL, 15985, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27c0000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lxqt.scm", {st_mode=S_IFREG|0644, st_size=6553, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/lxqt.go", {st_mode=S_IFREG|0644, st_size=9843, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/lxqt.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=9843, ...}) = 0
[pid 32619] mmap(NULL, 9843, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27bd000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x4146000)              = 0x4146000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/markdown.scm", {st_mode=S_IFREG|0644, st_size=4053, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/markdown.go", {st_mode=S_IFREG|0644, st_size=6749, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/markdown.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6749, ...}) = 0
[pid 32619] mmap(NULL, 6749, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27bb000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mc.scm", {st_mode=S_IFREG|0644, st_size=2549, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mc.go", {st_mode=S_IFREG|0644, st_size=4007, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/mc.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4007, ...}) = 0
[pid 32619] mmap(NULL, 4007, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27ba000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mg.scm", {st_mode=S_IFREG|0644, st_size=2535, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mg.go", {st_mode=S_IFREG|0644, st_size=3802, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/mg.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3802, ...}) = 0
[pid 32619] mmap(NULL, 3802, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27b9000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/miscfiles.scm", {st_mode=S_IFREG|0644, st_size=1819, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/miscfiles.go", {st_mode=S_IFREG|0644, st_size=3102, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/miscfiles.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3102, ...}) = 0
[pid 32619] mmap(NULL, 3102, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27b8000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/moe.scm", {st_mode=S_IFREG|0644, st_size=2148, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/moe.go", {st_mode=S_IFREG|0644, st_size=3400, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/moe.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3400, ...}) = 0
[pid 32619] mmap(NULL, 3400, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27b7000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/moreutils.scm", {st_mode=S_IFREG|0644, st_size=2677, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/moreutils.go", {st_mode=S_IFREG|0644, st_size=4206, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/moreutils.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4206, ...}) = 0
[pid 32619] mmap(NULL, 4206, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27b5000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mpd.scm", {st_mode=S_IFREG|0644, st_size=8869, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mpd.go", {st_mode=S_IFREG|0644, st_size=14576, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/mpd.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=14576, ...}) = 0
[pid 32619] mmap(NULL, 14576, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27b1000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mtools.scm", {st_mode=S_IFREG|0644, st_size=4431, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/mtools.go", {st_mode=S_IFREG|0644, st_size=6178, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/mtools.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6178, ...}) = 0
[pid 32619] mmap(NULL, 6178, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27af000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/music.scm", {st_mode=S_IFREG|0644, st_size=28729, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/music.go", {st_mode=S_IFREG|0644, st_size=37613, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/music.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=37613, ...}) = 0
[pid 32619] mmap(NULL, 37613, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27a5000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ncdu.scm", {st_mode=S_IFREG|0644, st_size=2048, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ncdu.go", {st_mode=S_IFREG|0644, st_size=3256, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/ncdu.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3256, ...}) = 0
[pid 32619] mmap(NULL, 3256, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27a4000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ninja.scm", {st_mode=S_IFREG|0644, st_size=3093, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ninja.go", {st_mode=S_IFREG|0644, st_size=4618, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/ninja.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4618, ...}) = 0
[pid 32619] mmap(NULL, 4618, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27a2000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/node.scm", {st_mode=S_IFREG|0644, st_size=3321, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/node.go", {st_mode=S_IFREG|0644, st_size=4529, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/node.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4529, ...}) = 0
[pid 32619] mmap(NULL, 4529, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f27a0000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/noweb.scm", {st_mode=S_IFREG|0644, st_size=4688, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/noweb.go", {st_mode=S_IFREG|0644, st_size=6998, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/noweb.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6998, ...}) = 0
[pid 32619] mmap(NULL, 6998, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f279e000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/nutrition.scm", {st_mode=S_IFREG|0644, st_size=2986, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/nutrition.go", {st_mode=S_IFREG|0644, st_size=3942, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/nutrition.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3942, ...}) = 0
[pid 32619] mmap(NULL, 3942, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f279d000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/nvi.scm", {st_mode=S_IFREG|0644, st_size=2863, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/nvi.go", {st_mode=S_IFREG|0644, st_size=3961, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/nvi.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3961, ...}) = 0
[pid 32619] mmap(NULL, 3961, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f279c000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ocaml.scm", {st_mode=S_IFREG|0644, st_size=22538, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ocaml.go", {st_mode=S_IFREG|0644, st_size=27426, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/ocaml.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=27426, ...}) = 0
[pid 32619] mmap(NULL, 27426, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2795000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/onc-rpc.scm", {st_mode=S_IFREG|0644, st_size=2264, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/onc-rpc.go", {st_mode=S_IFREG|0644, st_size=3404, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/onc-rpc.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3404, ...}) = 0
[pid 32619] mmap(NULL, 3404, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2794000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/openbox.scm", {st_mode=S_IFREG|0644, st_size=2526, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/openbox.go", {st_mode=S_IFREG|0644, st_size=3948, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/openbox.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3948, ...}) = 0
[pid 32619] mmap(NULL, 3948, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2793000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/openstack.scm", {st_mode=S_IFREG|0644, st_size=18371, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/openstack.go", {st_mode=S_IFREG|0644, st_size=32010, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/openstack.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=32010, ...}) = 0
[pid 32619] mmap(NULL, 32010, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f278b000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/orpheus.scm", {st_mode=S_IFREG|0644, st_size=3800, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/orpheus.go", {st_mode=S_IFREG|0644, st_size=4964, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/orpheus.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4964, ...}) = 0
[pid 32619] mmap(NULL, 4964, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2789000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/parallel.scm", {st_mode=S_IFREG|0644, st_size=1875, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/parallel.go", {st_mode=S_IFREG|0644, st_size=3077, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/parallel.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3077, ...}) = 0
[pid 32619] mmap(NULL, 3077, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2788000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/password-utils.scm", {st_mode=S_IFREG|0644, st_size=4062, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/password-utils.go", {st_mode=S_IFREG|0644, st_size=7577, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/password-utils.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=7577, ...}) = 0
[pid 32619] mmap(NULL, 7577, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2786000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patchutils.scm", {st_mode=S_IFREG|0644, st_size=8429, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/patchutils.go", {st_mode=S_IFREG|0644, st_size=12265, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/patchutils.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=12265, ...}) = 0
[pid 32619] mmap(NULL, 12265, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2783000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pem.scm", {st_mode=S_IFREG|0644, st_size=1794, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pem.go", {st_mode=S_IFREG|0644, st_size=3008, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/pem.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3008, ...}) = 0
[pid 32619] mmap(NULL, 3008, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2782000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x4156000)              = 0x4156000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/plotutils.scm", {st_mode=S_IFREG|0644, st_size=6660, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/plotutils.go", {st_mode=S_IFREG|0644, st_size=9641, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/plotutils.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=9641, ...}) = 0
[pid 32619] mmap(NULL, 9641, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f277f000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pumpio.scm", {st_mode=S_IFREG|0644, st_size=2749, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pumpio.go", {st_mode=S_IFREG|0644, st_size=3982, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/pumpio.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3982, ...}) = 0
[pid 32619] mmap(NULL, 3982, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f277e000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pv.scm", {st_mode=S_IFREG|0644, st_size=1853, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/pv.go", {st_mode=S_IFREG|0644, st_size=3015, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/pv.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3015, ...}) = 0
[pid 32619] mmap(NULL, 3015, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f277d000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ratpoison.scm", {st_mode=S_IFREG|0644, st_size=3909, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/ratpoison.go", {st_mode=S_IFREG|0644, st_size=5694, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/ratpoison.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5694, ...}) = 0
[pid 32619] mmap(NULL, 5694, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f277b000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rc.scm", {st_mode=S_IFREG|0644, st_size=2811, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rc.go", {st_mode=S_IFREG|0644, st_size=4495, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/rc.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4495, ...}) = 0
[pid 32619] mmap(NULL, 4495, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2779000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rdesktop.scm", {st_mode=S_IFREG|0644, st_size=2362, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rdesktop.go", {st_mode=S_IFREG|0644, st_size=3437, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/rdesktop.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3437, ...}) = 0
[pid 32619] mmap(NULL, 3437, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2778000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rush.scm", {st_mode=S_IFREG|0644, st_size=1925, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/rush.go", {st_mode=S_IFREG|0644, st_size=3105, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/rush.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3105, ...}) = 0
[pid 32619] mmap(NULL, 3105, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2777000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/sawfish.scm", {st_mode=S_IFREG|0644, st_size=6926, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/sawfish.go", {st_mode=S_IFREG|0644, st_size=10393, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/sawfish.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=10393, ...}) = 0
[pid 32619] mmap(NULL, 10393, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2774000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/scheme.scm", {st_mode=S_IFREG|0644, st_size=29648, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/scheme.go", {st_mode=S_IFREG|0644, st_size=33177, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/scheme.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=33177, ...}) = 0
[pid 32619] mmap(NULL, 33177, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f276b000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/screen.scm", {st_mode=S_IFREG|0644, st_size=3698, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/screen.go", {st_mode=S_IFREG|0644, st_size=5818, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/screen.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5818, ...}) = 0
[pid 32619] mmap(NULL, 5818, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2769000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/serveez.scm", {st_mode=S_IFREG|0644, st_size=2400, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/serveez.go", {st_mode=S_IFREG|0644, st_size=3812, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/serveez.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3812, ...}) = 0
[pid 32619] mmap(NULL, 3812, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2768000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/skarnet.scm", {st_mode=S_IFREG|0644, st_size=3951, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/skarnet.go", {st_mode=S_IFREG|0644, st_size=6155, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/skarnet.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6155, ...}) = 0
[pid 32619] mmap(NULL, 6155, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2766000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/skribilo.scm", {st_mode=S_IFREG|0644, st_size=3931, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/skribilo.go", {st_mode=S_IFREG|0644, st_size=6637, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/skribilo.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6637, ...}) = 0
[pid 32619] mmap(NULL, 6637, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2764000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/slim.scm", {st_mode=S_IFREG|0644, st_size=3793, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/slim.go", {st_mode=S_IFREG|0644, st_size=5233, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/slim.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5233, ...}) = 0
[pid 32619] mmap(NULL, 5233, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2762000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/smalltalk.scm", {st_mode=S_IFREG|0644, st_size=2151, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/smalltalk.go", {st_mode=S_IFREG|0644, st_size=3582, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/smalltalk.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3582, ...}) = 0
[pid 32619] mmap(NULL, 3582, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2761000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x4166000)              = 0x4166000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/stalonetray.scm", {st_mode=S_IFREG|0644, st_size=1938, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/stalonetray.go", {st_mode=S_IFREG|0644, st_size=3248, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/stalonetray.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3248, ...}) = 0
[pid 32619] mmap(NULL, 3248, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2760000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/suckless.scm", {st_mode=S_IFREG|0644, st_size=7212, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/suckless.go", {st_mode=S_IFREG|0644, st_size=11488, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/suckless.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=11488, ...}) = 0
[pid 32619] mmap(NULL, 11488, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f275d000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/sxiv.scm", {st_mode=S_IFREG|0644, st_size=2459, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/sxiv.go", {st_mode=S_IFREG|0644, st_size=3777, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/sxiv.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3777, ...}) = 0
[pid 32619] mmap(NULL, 3777, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f275c000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/synergy.scm", {st_mode=S_IFREG|0644, st_size=4601, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/synergy.go", {st_mode=S_IFREG|0644, st_size=6015, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/synergy.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=6015, ...}) = 0
[pid 32619] mmap(NULL, 6015, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f275a000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/task-management.scm", {st_mode=S_IFREG|0644, st_size=2329, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/task-management.go", {st_mode=S_IFREG|0644, st_size=3788, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/task-management.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3788, ...}) = 0
[pid 32619] mmap(NULL, 3788, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2759000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/telephony.scm", {st_mode=S_IFREG|0644, st_size=8773, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/telephony.go", {st_mode=S_IFREG|0644, st_size=15499, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/telephony.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=15499, ...}) = 0
[pid 32619] mmap(NULL, 15499, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2755000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/time.scm", {st_mode=S_IFREG|0644, st_size=2286, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/time.go", {st_mode=S_IFREG|0644, st_size=3401, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/time.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3401, ...}) = 0
[pid 32619] mmap(NULL, 3401, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2754000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tmux.scm", {st_mode=S_IFREG|0644, st_size=1982, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tmux.go", {st_mode=S_IFREG|0644, st_size=3177, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/tmux.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3177, ...}) = 0
[pid 32619] mmap(NULL, 3177, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2753000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tre.scm", {st_mode=S_IFREG|0644, st_size=2259, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tre.go", {st_mode=S_IFREG|0644, st_size=3424, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/tre.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3424, ...}) = 0
[pid 32619] mmap(NULL, 3424, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2752000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tv.scm", {st_mode=S_IFREG|0644, st_size=2463, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/tv.go", {st_mode=S_IFREG|0644, st_size=3847, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/tv.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3847, ...}) = 0
[pid 32619] mmap(NULL, 3847, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2751000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/unrtf.scm", {st_mode=S_IFREG|0644, st_size=2956, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/unrtf.go", {st_mode=S_IFREG|0644, st_size=4336, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/unrtf.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4336, ...}) = 0
[pid 32619] mmap(NULL, 4336, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f274f000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/uucp.scm", {st_mode=S_IFREG|0644, st_size=2344, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/uucp.go", {st_mode=S_IFREG|0644, st_size=3441, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/uucp.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3441, ...}) = 0
[pid 32619] mmap(NULL, 3441, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f274e000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/vpn.scm", {st_mode=S_IFREG|0644, st_size=7049, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/vpn.go", {st_mode=S_IFREG|0644, st_size=12493, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/vpn.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=12493, ...}) = 0
[pid 32619] mmap(NULL, 12493, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f274a000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/vtk.scm", {st_mode=S_IFREG|0644, st_size=2764, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/vtk.go", {st_mode=S_IFREG|0644, st_size=3968, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/vtk.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3968, ...}) = 0
[pid 32619] mmap(NULL, 3968, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2749000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x4176000)              = 0x4176000
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wdiff.scm", {st_mode=S_IFREG|0644, st_size=2200, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wdiff.go", {st_mode=S_IFREG|0644, st_size=3474, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/wdiff.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3474, ...}) = 0
[pid 32619] mmap(NULL, 3474, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2748000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/weechat.scm", {st_mode=S_IFREG|0644, st_size=4087, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/weechat.go", {st_mode=S_IFREG|0644, st_size=5572, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/weechat.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5572, ...}) = 0
[pid 32619] mmap(NULL, 5572, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2746000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wine.scm", {st_mode=S_IFREG|0644, st_size=5398, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wine.go", {st_mode=S_IFREG|0644, st_size=7110, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/wine.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=7110, ...}) = 0
[pid 32619] mmap(NULL, 7110, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2744000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wm.scm", {st_mode=S_IFREG|0644, st_size=8516, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wm.go", {st_mode=S_IFREG|0644, st_size=13902, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/wm.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=13902, ...}) = 0
[pid 32619] mmap(NULL, 13902, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2740000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wordnet.scm", {st_mode=S_IFREG|0644, st_size=4337, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/wordnet.go", {st_mode=S_IFREG|0644, st_size=5245, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/wordnet.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5245, ...}) = 0
[pid 32619] mmap(NULL, 5245, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f273e000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xfce.scm", {st_mode=S_IFREG|0644, st_size=25633, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xfce.go", {st_mode=S_IFREG|0644, st_size=42721, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/xfce.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=42721, ...}) = 0
[pid 32619] mmap(NULL, 42721, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2733000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xnee.scm", {st_mode=S_IFREG|0644, st_size=2182, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/xnee.go", {st_mode=S_IFREG|0644, st_size=3609, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/xnee.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=3609, ...}) = 0
[pid 32619] mmap(NULL, 3609, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2732000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/yubico.scm", {st_mode=S_IFREG|0644, st_size=2972, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/yubico.go", {st_mode=S_IFREG|0644, st_size=5820, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/yubico.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=5820, ...}) = 0
[pid 32619] mmap(NULL, 5820, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f2730000
[pid 32619] close(12)                   = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/zsh.scm", {st_mode=S_IFREG|0644, st_size=3401, ...}) = 0
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/zsh.go", {st_mode=S_IFREG|0644, st_size=4208, ...}) = 0
[pid 32619] open("/home/dave/Code/guix/gnu/packages/zsh.go", O_RDONLY|O_CLOEXEC) = 12
[pid 32619] fstat(12, {st_mode=S_IFREG|0644, st_size=4208, ...}) = 0
[pid 32619] mmap(NULL, 4208, PROT_READ, MAP_PRIVATE, 12, 0) = 0x7f08f272e000
[pid 32619] close(12)                   = 0
[pid 32619] brk(0x4186000)              = 0x4186000
[pid 32619] brk(0x48a0000)              = 0x48a0000
[pid 32619] brk(0x48b0000)              = 0x48b0000
[pid 32619] brk(0x48c0000)              = 0x48c0000
[pid 32619] socket(PF_FILE, SOCK_STREAM, 0) = 12
[pid 32619] fcntl(12, F_GETFL)          = 0x2 (flags O_RDWR)
[pid 32619] lseek(12, 0, SEEK_CUR)      = -1 ESPIPE (Illegal seek)
[pid 32619] connect(12, {sa_family=AF_FILE, sun_path="/home/dave/Code/guix/test-tmp/var/32595/daemon-socket/socket"}, 62) = 0
[pid 32619] write(12, "cxin\0\0\0\0", 8) = 8
[pid 32619] read(12, accepted connection from pid 32619, user dave
"oixd\0\0\0\0", 8) = 8
[pid 32619] read(12, "\16\1\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\f\1\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] read(12, "stla\0\0\0\0", 8) = 8
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/tar", {st_mode=S_IFREG|0755, st_size=1369912, ...}) = 0
[pid 32619] lstat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/tar", {st_mode=S_IFREG|0755, st_size=1369912, ...}) = 0
[pid 32619] write(12, "\7\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\3\0\0\0\0\0\0\0tar\0\0\0\0\0", 16) = 16
[pid 32619] write(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\6\0\0\0\0\0\0\0sha256\0\0", 16) = 16
[pid 32619] write(12, "\r\0\0\0\0\0\0\0nix-archive-1\0\0\0", 24) = 24
[pid 32619] lstat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/tar", {st_mode=S_IFREG|0755, st_size=1369912, ...}) = 0
[pid 32619] write(12, "\1\0\0\0\0\0\0\0(\0\0\0\0\0\0\0", 16) = 16
[pid 32619] write(12, "\4\0\0\0\0\0\0\0type\0\0\0\0", 16) = 16
[pid 32619] write(12, "\7\0\0\0\0\0\0\0regular\0", 16) = 16
[pid 32619] write(12, "\n\0\0\0\0\0\0\0executable\0\0\0\0\0\0", 24) = 24
[pid 32619] write(12, "\0\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\10\0\0\0\0\0\0\0contents", 16) = 16
[pid 32619] write(12, "8\347\24\0\0\0\0\0", 8) = 8
[pid 32619] open("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/tar", O_RDONLY) = 13
[pid 32619] fcntl(13, F_GETFL)          = 0x8000 (flags O_RDONLY|O_LARGEFILE)
[pid 32619] lseek(13, 0, SEEK_CUR)      = 0
[pid 32619] fstat(13, {st_mode=S_IFREG|0755, st_size=1369912, ...}) = 0
[pid 32619] sendfile(12, 13, [0], 1369912) = 1369912
[pid 32619] close(13)                   = 0
[pid 32619] write(12, "\1\0\0\0\0\0\0\0)\0\0\0\0\0\0\0", 16) = 16
[pid 32619] read(12, "stla\0\0\0\0", 8) = 8
[pid 32619] read(12, "H\0\0\0\0\0\0\0", 8) = 8
[pid 32619] read(12, "/home/dave/Code/guix/test-tmp/st"..., 72) = 72
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/xz", {st_mode=S_IFREG|0755, st_size=927264, ...}) = 0
[pid 32619] lstat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/xz", {st_mode=S_IFREG|0755, st_size=927264, ...}) = 0
[pid 32619] write(12, "\7\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\2\0\0\0\0\0\0\0xz\0\0\0\0\0\0", 16) = 16
[pid 32619] write(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\6\0\0\0\0\0\0\0sha256\0\0", 16) = 16
[pid 32619] write(12, "\r\0\0\0\0\0\0\0nix-archive-1\0\0\0", 24) = 24
[pid 32619] lstat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/xz", {st_mode=S_IFREG|0755, st_size=927264, ...}) = 0
[pid 32619] write(12, "\1\0\0\0\0\0\0\0(\0\0\0\0\0\0\0", 16) = 16
[pid 32619] write(12, "\4\0\0\0\0\0\0\0type\0\0\0\0", 16) = 16
[pid 32619] write(12, "\7\0\0\0\0\0\0\0regular\0", 16) = 16
[pid 32619] write(12, "\n\0\0\0\0\0\0\0executable\0\0\0\0\0\0", 24) = 24
[pid 32619] write(12, "\0\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\10\0\0\0\0\0\0\0contents", 16) = 16
[pid 32619] write(12, " &\16\0\0\0\0\0", 8) = 8
[pid 32619] open("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/xz", O_RDONLY) = 13
[pid 32619] fcntl(13, F_GETFL)          = 0x8000 (flags O_RDONLY|O_LARGEFILE)
[pid 32619] lseek(13, 0, SEEK_CUR)      = 0
[pid 32619] fstat(13, {st_mode=S_IFREG|0755, st_size=927264, ...}) = 0
[pid 32619] sendfile(12, 13, [0], 927264) = 927264
[pid 32619] close(13)                   = 0
[pid 32619] write(12, "\1\0\0\0\0\0\0\0)\0\0\0\0\0\0\0", 16) = 16
[pid 32619] read(12, "stla\0\0\0\0", 8) = 8
[pid 32619] read(12, "G\0\0\0\0\0\0\0", 8) = 8
[pid 32619] read(12, "/home/dave/Code/guix/test-tmp/st"..., 71) = 71
[pid 32619] read(12, "\0", 1)           = 1
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/mkdir", {st_mode=S_IFREG|0755, st_size=792448, ...}) = 0
[pid 32619] lstat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/mkdir", {st_mode=S_IFREG|0755, st_size=792448, ...}) = 0
[pid 32619] write(12, "\7\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\5\0\0\0\0\0\0\0mkdir\0\0\0", 16) = 16
[pid 32619] write(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\6\0\0\0\0\0\0\0sha256\0\0", 16) = 16
[pid 32619] write(12, "\r\0\0\0\0\0\0\0nix-archive-1\0\0\0", 24) = 24
[pid 32619] lstat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/mkdir", {st_mode=S_IFREG|0755, st_size=792448, ...}) = 0
[pid 32619] write(12, "\1\0\0\0\0\0\0\0(\0\0\0\0\0\0\0", 16) = 16
[pid 32619] write(12, "\4\0\0\0\0\0\0\0type\0\0\0\0", 16) = 16
[pid 32619] write(12, "\7\0\0\0\0\0\0\0regular\0", 16) = 16
[pid 32619] write(12, "\n\0\0\0\0\0\0\0executable\0\0\0\0\0\0", 24) = 24
[pid 32619] write(12, "\0\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\10\0\0\0\0\0\0\0contents", 16) = 16
[pid 32619] write(12, "\200\27\f\0\0\0\0\0", 8) = 8
[pid 32619] open("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/mkdir", O_RDONLY) = 13
[pid 32619] fcntl(13, F_GETFL)          = 0x8000 (flags O_RDONLY|O_LARGEFILE)
[pid 32619] lseek(13, 0, SEEK_CUR)      = 0
[pid 32619] fstat(13, {st_mode=S_IFREG|0755, st_size=792448, ...}) = 0
[pid 32619] sendfile(12, 13, [0], 792448) = 792448
[pid 32619] close(13)                   = 0
[pid 32619] write(12, "\1\0\0\0\0\0\0\0)\0\0\0\0\0\0\0", 16) = 16
[pid 32619] read(12, "stla\0\0\0\0", 8) = 8
[pid 32619] read(12, "J\0\0\0\0\0\0\0", 8) = 8
[pid 32619] read(12, "/home/dave/Code/guix/test-tmp/st"..., 74) = 74
[pid 32619] read(12, "\0\0\0\0\0\0", 6) = 6
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/bash", {st_mode=S_IFREG|0755, st_size=1425560, ...}) = 0
[pid 32619] lstat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/bash", {st_mode=S_IFREG|0755, st_size=1425560, ...}) = 0
[pid 32619] write(12, "\7\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\4\0\0\0\0\0\0\0bash\0\0\0\0", 16) = 16
[pid 32619] write(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\6\0\0\0\0\0\0\0sha256\0\0", 16) = 16
[pid 32619] write(12, "\r\0\0\0\0\0\0\0nix-archive-1\0\0\0", 24) = 24
[pid 32619] lstat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/bash", {st_mode=S_IFREG|0755, st_size=1425560, ...}) = 0
[pid 32619] write(12, "\1\0\0\0\0\0\0\0(\0\0\0\0\0\0\0", 16) = 16
[pid 32619] write(12, "\4\0\0\0\0\0\0\0type\0\0\0\0", 16) = 16
[pid 32619] write(12, "\7\0\0\0\0\0\0\0regular\0", 16) = 16
[pid 32619] write(12, "\n\0\0\0\0\0\0\0executable\0\0\0\0\0\0", 24) = 24
[pid 32619] write(12, "\0\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\10\0\0\0\0\0\0\0contents", 16) = 16
[pid 32619] write(12, "\230\300\25\0\0\0\0\0", 8) = 8
[pid 32619] open("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/bash", O_RDONLY) = 13
[pid 32619] fcntl(13, F_GETFL)          = 0x8000 (flags O_RDONLY|O_LARGEFILE)
[pid 32619] lseek(13, 0, SEEK_CUR)      = 0
[pid 32619] fstat(13, {st_mode=S_IFREG|0755, st_size=1425560, ...}) = 0
[pid 32619] sendfile(12, 13, [0], 1425560) = 1425560
[pid 32619] close(13)                   = 0
[pid 32619] write(12, "\1\0\0\0\0\0\0\0)\0\0\0\0\0\0\0", 16) = 16
[pid 32619] read(12, "stla\0\0\0\0", 8) = 8
[pid 32619] read(12, "I\0\0\0\0\0\0\0", 8) = 8
[pid 32619] read(12, "/home/dave/Code/guix/test-tmp/st"..., 73) = 73
[pid 32619] read(12, "\0\0\0\0\0\0\0", 7) = 7
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/guile-2.0.9.tar.xz", {st_mode=S_IFREG|0644, st_size=2885996, ...}) = 0
[pid 32619] lstat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/guile-2.0.9.tar.xz", {st_mode=S_IFREG|0644, st_size=2885996, ...}) = 0
[pid 32619] write(12, "\7\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\22\0\0\0\0\0\0\0guile-2.0.9.tar.xz\0\0\0\0\0\0", 32) = 32
[pid 32619] write(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\6\0\0\0\0\0\0\0sha256\0\0", 16) = 16
[pid 32619] write(12, "\r\0\0\0\0\0\0\0nix-archive-1\0\0\0", 24) = 24
[pid 32619] lstat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/guile-2.0.9.tar.xz", {st_mode=S_IFREG|0644, st_size=2885996, ...}) = 0
[pid 32619] write(12, "\1\0\0\0\0\0\0\0(\0\0\0\0\0\0\0", 16) = 16
[pid 32619] write(12, "\4\0\0\0\0\0\0\0type\0\0\0\0", 16) = 16
[pid 32619] write(12, "\7\0\0\0\0\0\0\0regular\0", 16) = 16
[pid 32619] write(12, "\10\0\0\0\0\0\0\0contents", 16) = 16
[pid 32619] write(12, "l\t,\0\0\0\0\0", 8) = 8
[pid 32619] open("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/guile-2.0.9.tar.xz", O_RDONLY) = 13
[pid 32619] fcntl(13, F_GETFL)          = 0x8000 (flags O_RDONLY|O_LARGEFILE)
[pid 32619] lseek(13, 0, SEEK_CUR)      = 0
[pid 32619] fstat(13, {st_mode=S_IFREG|0644, st_size=2885996, ...}) = 0
[pid 32619] sendfile(12, 13, [0], 2885996) = 2885996
[pid 32619] close(13)                   = 0
[pid 32619] write(12, "\0\0\0\0", 4)    = 4
[pid 32619] write(12, "\1\0\0\0\0\0\0\0)\0\0\0\0\0\0\0", 16) = 16
[pid 32619] read(12, "stla\0\0\0\0", 8) = 8
[pid 32619] read(12, "W\0\0\0\0\0\0\0", 8) = 8
[pid 32619] read(12, "/home/dave/Code/guix/test-tmp/st"..., 87) = 87
[pid 32619] read(12, "\0", 1)           = 1
[pid 32619] write(12, "\10\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\30\0\0\0\0\0\0\0build-bootstrap-guile.sh", 32) = 32
[pid 32619] write(12, "\376\4\0\0\0\0\0\0\necho \"unpacking bootstr"..., 1288) = 1288
[pid 32619] write(12, "\5\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "J\0\0\0\0\0\0\0/home/dave/Code/guix/tes"..., 88) = 88
[pid 32619] write(12, "G\0\0\0\0\0\0\0/home/dave/Code/guix/tes"..., 80) = 80
[pid 32619] write(12, "W\0\0\0\0\0\0\0/home/dave/Code/guix/tes"..., 96) = 96
[pid 32619] write(12, "H\0\0\0\0\0\0\0/home/dave/Code/guix/tes"..., 80) = 80
[pid 32619] write(12, "I\0\0\0\0\0\0\0/home/dave/Code/guix/tes"..., 88) = 88
[pid 32619] read(12, "stla\0\0\0\0", 8) = 8
[pid 32619] read(12, "]\0\0\0\0\0\0\0", 8) = 8
[pid 32619] read(12, "/home/dave/Code/guix/test-tmp/st"..., 93) = 93
[pid 32619] read(12, "\0\0\0", 3)       = 3
[pid 32619] write(12, "\10\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\27\0\0\0\0\0\0\0guile-bootstrap-2.0.drv\0", 32) = 32
[pid 32619] write(12, "E\2\0\0\0\0\0\0Derive([(\"out\",\"/home/da"..., 592) = 592
[pid 32619] write(12, "\2\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "I\0\0\0\0\0\0\0/home/dave/Code/guix/tes"..., 88) = 88
[pid 32619] write(12, "]\0\0\0\0\0\0\0/home/dave/Code/guix/tes"..., 104) = 104
[pid 32619] read(12, "stla\0\0\0\0", 8) = 8
[pid 32619] read(12, "\\\0\0\0\0\0\0\0", 8) = 8
[pid 32619] read(12, "/home/dave/Code/guix/test-tmp/st"..., 92) = 92
[pid 32619] read(12, "\0\0\0\0", 4)     = 4
[pid 32619] stat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/bash", {st_mode=S_IFREG|0755, st_size=1425560, ...}) = 0
[pid 32619] lstat("/home/dave/Code/guix/gnu/packages/bootstrap/x86_64-linux/bash", {st_mode=S_IFREG|0755, st_size=1425560, ...}) = 0
[pid 32619] write(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "X\0\0\0\0\0\0\0/home/dave/Code/guix/tes"..., 96) = 96
[pid 32619] read(12, "stla\0\0\0\0", 8) = 8
[pid 32619] read(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, " \0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\0\0\0\0\0\0\0\0", 8) = 8
[pid 32619] read(12, "stla\0\0\0\0", 8) = 8
[pid 32619] read(12, "\0\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "X\0\0\0\0\0\0\0/home/dave/Code/guix/tes"..., 96) = 96
[pid 32619] read(12, "stla\0\0\0\0", 8) = 8
[pid 32619] read(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "X\0\0\0\0\0\0\0/home/dave/Code/guix/tes"..., 96) = 96
[pid 32619] read(12, "stla\0\0\0\0", 8) = 8
[pid 32619] read(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\36\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\0\0\0\0\0\0\0\0", 8) = 8
[pid 32619] read(12, "stla\0\0\0\0", 8) = 8
[pid 32619] read(12, "\0\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\23\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\0\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\0\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\0\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\0\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\20\16\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\0\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\0\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\0\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\0\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\0\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\17\0\0\0\0\0\0\0substitute-urls\0", 24) = 24
[pid 32619] write(12, "\24\0\0\0\0\0\0\0http://hydra.gnu.org\0\0\0\0", 32) = 32
[pid 32619] read(12, "stla\0\0\0\0", 8) = 8
[pid 32619] write(12, "\t\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\\\0\0\0\0\0\0\0/home/dave/Code/guix/tes"..., 104) = 104
[pid 32619] read(12, "stla\0\0\0\0", 8) = 8
[pid 32619] read(12, "\1\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\5\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "I\0\0\0\0\0\0\0/home/dave/Code/guix/tes"..., 88) = 88
[pid 32619] read(12, "stla\0\0\0\0", 8) = 8
[pid 32619] read(12, "\0\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "\5\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "X\0\0\0\0\0\0\0/home/dave/Code/guix/tes"..., 96) = 96
[pid 32619] read(12, "stla\0\0\0\0", 8) = 8
[pid 32619] read(12, "\2\0\0\0\0\0\0\0", 8) = 8
[pid 32619] read(12, "X\0\0\0\0\0\0\0", 8) = 8
[pid 32619] read(12, "/home/dave/Code/guix/test-tmp/st"..., 88) = 88
[pid 32619] read(12, "I\0\0\0\0\0\0\0", 8) = 8
[pid 32619] read(12, "/home/dave/Code/guix/test-tmp/st"..., 73) = 73
[pid 32619] read(12, "\0\0\0\0\0\0\0", 7) = 7
[pid 32619] write(12, "\5\0\0\0\0\0\0\0", 8) = 8
[pid 32619] write(12, "I\0\0\0\0\0\0\0/home/dave/Code/guix/tes"..., 88) = 88
[pid 32619] read(12, "stla\0\0\0\0", 8) = 8
[pid 32619] read(12, "\0\0\0\0\0\0\0\0", 8) = 8
[pid 32619] getcwd("/home/dave/Code/guix", 100) = 21
[pid 32619] mkdir("/tmp/guix-directory.Datz1K", 0700) = 0
[pid 32619] pipe([13, 14])              = 0
[pid 32619] fcntl(13, F_GETFL)          = 0 (flags O_RDONLY)
[pid 32619] lseek(13, 0, SEEK_CUR)      = -1 ESPIPE (Illegal seek)
[pid 32619] fstat(13, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
[pid 32619] fcntl(14, F_GETFL)          = 0x1 (flags O_WRONLY)
[pid 32619] lseek(14, 0, SEEK_CUR)      = -1 ESPIPE (Illegal seek)
[pid 32619] fstat(14, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
[pid 32619] clone(child_stack=0, flags=CLONE_NEWNS|CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|CLONE_NEWUTS|CLONE_NEWIPC|CLONE_NEWUSER|CLONE_NEWPID|CLONE_NEWNET|SIGCHLD, child_tidptr=0x7ffe14eb2200) = 32625
Process 32625 attached
[pid 32619] getuid( <unfinished ...>
[pid 32625] close(14 <unfinished ...>
[pid 32619] <... getuid resumed> )      = 1000
[pid 32625] <... close resumed> )       = 0
[pid 32619] getgid()                    = 998
[pid 32625] read(13,  <unfinished ...>
[pid 32619] open("/proc/32625/setgroups", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 15
[pid 32619] lstat("/proc", {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
[pid 32619] lstat("/proc/32625", {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
[pid 32619] lstat("/proc/32625/setgroups", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32619] fcntl(15, F_GETFL)          = 0x8001 (flags O_WRONLY|O_LARGEFILE)
[pid 32619] lseek(15, 0, SEEK_CUR)      = 0
[pid 32619] fstat(15, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32619] write(15, "deny", 4)        = 4
[pid 32619] close(15)                   = 0
[pid 32619] open("/proc/32625/uid_map", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 15
[pid 32619] lstat("/proc", {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
[pid 32619] lstat("/proc/32625", {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
[pid 32619] lstat("/proc/32625/uid_map", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32619] fcntl(15, F_GETFL)          = 0x8001 (flags O_WRONLY|O_LARGEFILE)
[pid 32619] lseek(15, 0, SEEK_CUR)      = 0
[pid 32619] fstat(15, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32619] write(15, "0 1000 1", 8)    = 8
[pid 32619] close(15)                   = 0
[pid 32619] open("/proc/32625/gid_map", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 15
[pid 32619] lstat("/proc", {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
[pid 32619] lstat("/proc/32625", {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
[pid 32619] lstat("/proc/32625/gid_map", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32619] fcntl(15, F_GETFL)          = 0x8001 (flags O_WRONLY|O_LARGEFILE)
[pid 32619] lseek(15, 0, SEEK_CUR)      = 0
[pid 32619] fstat(15, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32619] write(15, "0 998 1", 7)     = 7
[pid 32619] close(15)                   = 0
[pid 32619] close(13)                   = 0
[pid 32619] write(14, "ready", 5)       = 5
[pid 32625] <... read resumed> "ready", 4096) = 5
[pid 32619] close(14)                   = 0
[pid 32625] read(13, "", 4096)          = 0
[pid 32625] close(13)                   = 0
[pid 32619] rt_sigaction(SIGINT, {0x7f08f761fa30, [], SA_RESTORER, 0x7f08f70eddd0}, {SIG_DFL, [], 0}, 8) = 0
[pid 32619] wait4(32625,  <unfinished ...>
[pid 32625] mount("none", "/tmp/guix-directory.Datz1K", "tmpfs", 0, NULL) = 0
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp", 0755)         = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/proc", 0755) = 0
[pid 32625] mount("none", "/tmp/guix-directory.Datz1K/proc", "proc", MS_NOSUID|MS_NODEV|MS_NOEXEC, NULL) = 0
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp", 0755)         = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/sys", 0755) = 0
[pid 32625] mount("none", "/tmp/guix-directory.Datz1K/sys", "sysfs", MS_RDONLY|MS_NOSUID|MS_NODEV|MS_NOEXEC, NULL) = 0
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp", 0755)         = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/dev", 0755) = 0
[pid 32625] mount("none", "/tmp/guix-directory.Datz1K/dev", "tmpfs", MS_NOEXEC|MS_STRICTATIME, "mode=755") = 0
[pid 32625] stat("/dev/null", {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 3), ...}) = 0
[pid 32625] open("/tmp/guix-directory.Datz1K/dev/null", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 13
[pid 32625] lstat("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=4096, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=100, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/dev", {st_mode=S_IFDIR|0755, st_size=60, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/dev/null", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32625] fcntl(13, F_GETFL)          = 0x8001 (flags O_WRONLY|O_LARGEFILE)
[pid 32625] lseek(13, 0, SEEK_CUR)      = 0
[pid 32625] fstat(13, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32625] close(13)                   = 0
[pid 32625] mount("/dev/null", "/tmp/guix-directory.Datz1K/dev/null", 0x13b6b50, MS_BIND, NULL) = 0
[pid 32625] stat("/dev/zero", {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 5), ...}) = 0
[pid 32625] open("/tmp/guix-directory.Datz1K/dev/zero", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 13
[pid 32625] lstat("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=4096, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=100, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/dev", {st_mode=S_IFDIR|0755, st_size=80, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/dev/zero", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32625] fcntl(13, F_GETFL)          = 0x8001 (flags O_WRONLY|O_LARGEFILE)
[pid 32625] lseek(13, 0, SEEK_CUR)      = 0
[pid 32625] fstat(13, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32625] close(13)                   = 0
[pid 32625] mount("/dev/zero", "/tmp/guix-directory.Datz1K/dev/zero", 0x13b6d40, MS_BIND, NULL) = 0
[pid 32625] stat("/dev/full", {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 7), ...}) = 0
[pid 32625] open("/tmp/guix-directory.Datz1K/dev/full", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 13
[pid 32625] lstat("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=4096, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=100, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/dev", {st_mode=S_IFDIR|0755, st_size=100, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/dev/full", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32625] fcntl(13, F_GETFL)          = 0x8001 (flags O_WRONLY|O_LARGEFILE)
[pid 32625] lseek(13, 0, SEEK_CUR)      = 0
[pid 32625] fstat(13, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32625] close(13)                   = 0
[pid 32625] mount("/dev/full", "/tmp/guix-directory.Datz1K/dev/full", 0x1d974f0, MS_BIND, NULL) = 0
[pid 32625] stat("/dev/random", {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 8), ...}) = 0
[pid 32625] open("/tmp/guix-directory.Datz1K/dev/random", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 13
[pid 32625] lstat("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=4096, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=100, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/dev", {st_mode=S_IFDIR|0755, st_size=120, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/dev/random", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32625] fcntl(13, F_GETFL)          = 0x8001 (flags O_WRONLY|O_LARGEFILE)
[pid 32625] lseek(13, 0, SEEK_CUR)      = 0
[pid 32625] fstat(13, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32625] close(13)                   = 0
[pid 32625] mount("/dev/random", "/tmp/guix-directory.Datz1K/dev/random", 0x1d97440, MS_BIND, NULL) = 0
[pid 32625] stat("/dev/urandom", {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 9), ...}) = 0
[pid 32625] open("/tmp/guix-directory.Datz1K/dev/urandom", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 13
[pid 32625] lstat("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=4096, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=100, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/dev", {st_mode=S_IFDIR|0755, st_size=140, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/dev/urandom", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32625] fcntl(13, F_GETFL)          = 0x8001 (flags O_WRONLY|O_LARGEFILE)
[pid 32625] lseek(13, 0, SEEK_CUR)      = 0
[pid 32625] fstat(13, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32625] close(13)                   = 0
[pid 32625] mount("/dev/urandom", "/tmp/guix-directory.Datz1K/dev/urandom", 0x1d975e0, MS_BIND, NULL) = 0
[pid 32625] stat("/dev/tty", {st_mode=S_IFCHR|0666, st_rdev=makedev(5, 0), ...}) = 0
[pid 32625] open("/tmp/guix-directory.Datz1K/dev/tty", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 13
[pid 32625] lstat("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=4096, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=100, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/dev", {st_mode=S_IFDIR|0755, st_size=160, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/dev/tty", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32625] fcntl(13, F_GETFL)          = 0x8001 (flags O_WRONLY|O_LARGEFILE)
[pid 32625] lseek(13, 0, SEEK_CUR)      = 0
[pid 32625] fstat(13, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32625] close(13)                   = 0
[pid 32625] mount("/dev/tty", "/tmp/guix-directory.Datz1K/dev/tty", 0x1d97650, MS_BIND, NULL) = 0
[pid 32625] stat("/dev/ptmx", {st_mode=S_IFCHR|0666, st_rdev=makedev(5, 2), ...}) = 0
[pid 32625] open("/tmp/guix-directory.Datz1K/dev/ptmx", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 13
[pid 32625] lstat("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=4096, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=100, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/dev", {st_mode=S_IFDIR|0755, st_size=180, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/dev/ptmx", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32625] fcntl(13, F_GETFL)          = 0x8001 (flags O_WRONLY|O_LARGEFILE)
[pid 32625] lseek(13, 0, SEEK_CUR)      = 0
[pid 32625] fstat(13, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32625] close(13)                   = 0
[pid 32625] mount("/dev/ptmx", "/tmp/guix-directory.Datz1K/dev/ptmx", 0x1d976c0, MS_BIND, NULL) = 0
[pid 32625] stat("/dev/fuse", {st_mode=S_IFCHR|0666, st_rdev=makedev(10, 229), ...}) = 0
[pid 32625] open("/tmp/guix-directory.Datz1K/dev/fuse", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 13
[pid 32625] lstat("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=4096, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=100, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/dev", {st_mode=S_IFDIR|0755, st_size=200, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/dev/fuse", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32625] fcntl(13, F_GETFL)          = 0x8001 (flags O_WRONLY|O_LARGEFILE)
[pid 32625] lseek(13, 0, SEEK_CUR)      = 0
[pid 32625] fstat(13, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32625] close(13)                   = 0
[pid 32625] mount("/dev/fuse", "/tmp/guix-directory.Datz1K/dev/fuse", 0x1d97560, MS_BIND, NULL) = 0
[pid 32625] ioctl(0, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
[pid 32625] open("/tmp/guix-directory.Datz1K/dev/console", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 13
[pid 32625] lstat("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=4096, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=100, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/dev", {st_mode=S_IFDIR|0755, st_size=220, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/dev/console", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32625] fcntl(13, F_GETFL)          = 0x8001 (flags O_WRONLY|O_LARGEFILE)
[pid 32625] lseek(13, 0, SEEK_CUR)      = 0
[pid 32625] fstat(13, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
[pid 32625] close(13)                   = 0
[pid 32625] chmod("/tmp/guix-directory.Datz1K/dev/console", 0600) = 0
[pid 32625] ioctl(0, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
[pid 32625] fstat(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 5), ...}) = 0
[pid 32625] readlink("/proc/self/fd/0", "/dev/pts/5", 4095) = 10
[pid 32625] stat("/dev/pts/5", {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 5), ...}) = 0
[pid 32625] mount("/dev/pts/5", "/tmp/guix-directory.Datz1K/dev/console", 0x1d97580, MS_BIND, NULL) = 0
[pid 32625] symlink("/proc/self/fd", "/tmp/guix-directory.Datz1K/dev/fd") = 0
[pid 32625] symlink("/proc/self/fd/0", "/tmp/guix-directory.Datz1K/dev/stdin") = 0
[pid 32625] symlink("/proc/self/fd/1", "/tmp/guix-directory.Datz1K/dev/stdout") = 0
[pid 32625] symlink("/proc/self/fd/2", "/tmp/guix-directory.Datz1K/dev/stderr") = 0
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp", 0755)         = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/dev", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/dev/pts", 0755) = 0
[pid 32625] mount("none", "/tmp/guix-directory.Datz1K//dev/pts", "devpts", MS_NOSUID|MS_NOEXEC, "newinstance,ptmxmode=0666,mode=6"...) = 0
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp", 0755)         = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/dev", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/dev/shm", 0755) = 0
[pid 32625] mount("tmpfs", "/tmp/guix-directory.Datz1K//dev/shm", "tmpfs", MS_NOSUID|MS_NODEV|MS_NOEXEC, "mode=1777,size=65536k") = 0
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp", 0755)         = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/dev", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/dev/mqueue", 0755) = 0
[pid 32625] mount("mqueue", "/tmp/guix-directory.Datz1K//dev/mqueue", "mqueue", MS_NOSUID|MS_NODEV|MS_NOEXEC, NULL) = 0
[pid 32625] stat("/home/dave/Code/guix", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp", 0755)         = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/home", 0755) = 0
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/home/dave", 0755) = 0
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/home/dave/Code", 0755) = 0
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/home/dave/Code/guix", 0755) = 0
[pid 32625] mount("/home/dave/Code/guix", "/tmp/guix-directory.Datz1K//home/dave/Code/guix", 0x1d97a40, MS_BIND, NULL) = 0
[pid 32625] stat("/home/dave/Code/guix/test-tmp/store/xh177jawf1hl22wm1rzfq7dgn9iz67jy-bash", {st_mode=S_IFREG|0555, st_size=0, ...}) = 0
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp", 0755)         = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/home", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/home/dave", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/home/dave/Code", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/home/dave/Code/guix", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/home/dave/Code/guix/test-tmp", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/home/dave/Code/guix/test-tmp/store", 0755) = -1 EEXIST (File exists)
[pid 32625] open("/tmp/guix-directory.Datz1K//home/dave/Code/guix/test-tmp/store/xh177jawf1hl22wm1rzfq7dgn9iz67jy-bash", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 13
[pid 32625] lstat("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=4096, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=120, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/home", {st_mode=S_IFDIR|0755, st_size=60, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/home/dave", {st_mode=S_IFDIR|0755, st_size=60, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/home/dave/Code", {st_mode=S_IFDIR|0755, st_size=60, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/home/dave/Code/guix", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/home/dave/Code/guix/test-tmp", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/home/dave/Code/guix/test-tmp/store", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
[pid 32625] lstat("/tmp/guix-directory.Datz1K/home/dave/Code/guix/test-tmp/store/xh177jawf1hl22wm1rzfq7dgn9iz67jy-bash", {st_mode=S_IFREG|0555, st_size=0, ...}) = 0
[pid 32625] fcntl(13, F_GETFL)          = 0x8001 (flags O_WRONLY|O_LARGEFILE)
[pid 32625] lseek(13, 0, SEEK_CUR)      = 0
[pid 32625] fstat(13, {st_mode=S_IFREG|0555, st_size=0, ...}) = 0
[pid 32625] close(13)                   = 0
[pid 32625] mount("/home/dave/Code/guix/test-tmp/store/xh177jawf1hl22wm1rzfq7dgn9iz67jy-bash", "/tmp/guix-directory.Datz1K//home/dave/Code/guix/test-tmp/store/xh177jawf1hl22wm1rzfq7dgn9iz67jy-bash", 0x1d97b30, MS_RDONLY|MS_BIND, NULL) = 0
[pid 32625] mount("/home/dave/Code/guix/test-tmp/store/xh177jawf1hl22wm1rzfq7dgn9iz67jy-bash", "/tmp/guix-directory.Datz1K//home/dave/Code/guix/test-tmp/store/xh177jawf1hl22wm1rzfq7dgn9iz67jy-bash", 0x13c3b30, MS_RDONLY|MS_REMOUNT|MS_BIND, NULL) = 0
[pid 32625] stat("/home/dave/Code/guix/test-tmp/store/w8fsskwxr793yq6w3368x5k1p07syi3h-guile-bootstrap-2.0", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp", 0755)         = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/home", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/home/dave", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/home/dave/Code", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/home/dave/Code/guix", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/home/dave/Code/guix/test-tmp", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/home/dave/Code/guix/test-tmp/store", 0755) = -1 EEXIST (File exists)
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/home/dave/Code/guix/test-tmp/store/w8fsskwxr793yq6w3368x5k1p07syi3h-guile-bootstrap-2.0", 0755) = -1 EEXIST (File exists)
[pid 32625] mount("/home/dave/Code/guix/test-tmp/store/w8fsskwxr793yq6w3368x5k1p07syi3h-guile-bootstrap-2.0", "/tmp/guix-directory.Datz1K//home/dave/Code/guix/test-tmp/store/w8fsskwxr793yq6w3368x5k1p07syi3h-guile-bootstrap-2.0", 0x13c3c50, MS_RDONLY|MS_BIND, NULL) = 0
[pid 32625] mount("/home/dave/Code/guix/test-tmp/store/w8fsskwxr793yq6w3368x5k1p07syi3h-guile-bootstrap-2.0", "/tmp/guix-directory.Datz1K//home/dave/Code/guix/test-tmp/store/w8fsskwxr793yq6w3368x5k1p07syi3h-guile-bootstrap-2.0", 0x13c3d60, MS_RDONLY|MS_REMOUNT|MS_BIND, NULL) = 0
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp/guix-directory.Datz1K/real-root", 0755) = 0
[pid 32625] pivot_root("/tmp/guix-directory.Datz1K", "/tmp/guix-directory.Datz1K/real-root") = 0
[pid 32625] chdir("/")                  = 0
[pid 32625] umount("real-root", MNT_DETACH) = 0
[pid 32625] rmdir("real-root")          = 0
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/bin", 0755)         = 0
[pid 32625] symlink("/home/dave/Code/guix/test-tmp/store/xh177jawf1hl22wm1rzfq7dgn9iz67jy-bash", "/bin/sh") = 0
[pid 32625] umask(0)                    = 022
[pid 32625] umask(022)                  = 0
[pid 32625] mkdir("/tmp", 0755)         = 0
[pid 32625] chdir("/home/dave/Code/guix") = 0
[pid 32625] stat("/home/dave/Code/guix/test-tmp/store/w8fsskwxr793yq6w3368x5k1p07syi3h-guile-bootstrap-2.0/bin", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
[pid 32625] stat("/home/dave/Code/guix/test-tmp/store/w8fsskwxr793yq6w3368x5k1p07syi3h-guile-bootstrap-2.0/sbin", 0x7ffe14eb2240) = -1 ENOENT (No such file or directory)
[pid 32625] rt_sigaction(SIGINT, {SIG_IGN, [], SA_RESTORER, 0x7f08f70eddd0}, {SIG_DFL, [], 0}, 8) = 0
[pid 32625] rt_sigaction(SIGQUIT, {SIG_IGN, [], SA_RESTORER, 0x7f08f70eddd0}, {SIG_DFL, [], 0}, 8) = 0
[pid 32625] clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7f08f7b0fa10) = 2
Process 32626 attached
[pid 32625] wait4(2,  <unfinished ...>
[pid 32626] set_robust_list(0x7f08f7b0fa20, 24) = 0
[pid 32626] execve("/home/dave/Code/guix/test-tmp/store/w8fsskwxr793yq6w3368x5k1p07syi3h-guile-bootstrap-2.0/bin/guile", ["guile", "-c", "(exit 42)"], [/* 6 vars */]) = -1 ENOEXEC (Exec format error)
[pid 32626] execve("/gnu/store/sybvv7vqvqqmijpn2ql1p6yk61cr5y3k-bash-static-4.3.39/bin/bash", ["/gnu/store/sybvv7vqvqqmijpn2ql1p"..., "/home/dave/Code/guix/test-tmp/st"..., "-c", "(exit 42)"], [/* 6 vars */]) = -1 ENOENT (No such file or directory)
[pid 32626] write(2, "In execvp of guile: No such file"..., 46In execvp of guile: No such file or directory
) = 46
[pid 32626] exit_group(127)             = ?
[pid 32626] +++ exited with 127 +++
[pid 32625] <... wait4 resumed> [{WIFEXITED(s) && WEXITSTATUS(s) == 127}], 0, NULL) = 2
[pid 32625] --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=2, si_status=127, si_utime=0, si_stime=0} ---
[pid 32625] rt_sigaction(SIGINT, {SIG_DFL, [], SA_RESTORER, 0x7f08f70eddd0}, {SIG_IGN, [], SA_RESTORER, 0x7f08f70eddd0}, 8) = 0
[pid 32625] rt_sigaction(SIGQUIT, {SIG_DFL, [], SA_RESTORER, 0x7f08f70eddd0}, {SIG_IGN, [], SA_RESTORER, 0x7f08f70eddd0}, 8) = 0
[pid 32625] exit_group(127)             = ?
[pid 32625] +++ exited with 127 +++
[pid 32619] <... wait4 resumed> [{WIFEXITED(s) && WEXITSTATUS(s) == 127}], 0, NULL) = 32625
[pid 32619] --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=32625, si_status=127, si_utime=0, si_stime=1} ---
[pid 32619] rmdir("/tmp/guix-directory.Datz1K") = 0
[pid 32619] close(12)                   = 0
[pid 32619] exit_group(127)             = ?
[pid 32623] +++ exited with 127 +++
[pid 32620] +++ exited with 127 +++
[pid 32621] +++ exited with 127 +++
[pid 32622] +++ exited with 127 +++
+++ exited with 127 +++
+ test 127 = 42
+ rm -r t-guix-environment-32604
./test-env: line 1: 32603 Terminated              "/home/dave/Code/guix/pre-inst-env" "/home/dave/Code/guix/guix-daemon" --disable-chroot --substitute-urls="$GUIX_BINARY_SUBSTITUTE_URL"
FAIL tests/guix-environment.sh (exit status: 1)

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 14/15] scripts: environment: Add --container option.
  2015-10-10 21:11         ` Thompson, David
@ 2015-10-11 19:34           ` Ludovic Courtès
  2015-10-17 10:05             ` Ludovic Courtès
  0 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-10-11 19:34 UTC (permalink / raw)
  To: Thompson, David; +Cc: guix-devel, David Thompson

Hi!

I think I got it.  First, note that:

--8<---------------cut here---------------start------------->8---
$ guix build guile-bootstrap 
/gnu/store/aiz8db2gni401wc9fgidmcggxyb1czis-guile-bootstrap-2.0
$ cat /gnu/store/aiz8db2gni401wc9fgidmcggxyb1czis-guile-bootstrap-2.0/bin/guile 
#!/gnu/store/gvwf71vddp8c1d7ydqg02p43mgdjrx6s-bash
export GUILE_SYSTEM_PATH=/gnu/store/aiz8db2gni401wc9fgidmcggxyb1czis-guile-bootstrap-2.0/share/guile/2.0
export GUILE_SYSTEM_COMPILED_PATH=/gnu/store/aiz8db2gni401wc9fgidmcggxyb1czis-guile-bootstrap-2.0/lib/guile/2.0/ccache
exec -a "$0" /gnu/store/aiz8db2gni401wc9fgidmcggxyb1czis-guile-bootstrap-2.0/bin/.guile-real "$@"
--8<---------------cut here---------------end--------------->8---

So:

> [pid 32626] execve("/home/dave/Code/guix/test-tmp/store/w8fsskwxr793yq6w3368x5k1p07syi3h-guile-bootstrap-2.0/bin/guile", ["guile", "-c", "(exit 42)"], [/* 6 vars */]) = -1 ENOEXEC (Exec format error)
> [pid 32626] execve("/gnu/store/sybvv7vqvqqmijpn2ql1p6yk61cr5y3k-bash-static-4.3.39/bin/bash", ["/gnu/store/sybvv7vqvqqmijpn2ql1p"..., "/home/dave/Code/guix/test-tmp/st"..., "-c", "(exit 42)"], [/* 6 vars */]) = -1 ENOENT (No such file or directory)
> [pid 32626] write(2, "In execvp of guile: No such file"..., 46In execvp of guile: No such file or directory
> ) = 46

The first ‘execve’ fails.  The ‘execve’ comes from libc itself, which
notices ENOEXEC and thus falls back to interpreting the executable with
_PATH_BSHELL (see posix/execvpe.c.)

However, the _PATH_BSHELL that is taken here is the one from /gnu/store
rather than the one from /home/dave/Code/guix/test-tmp/…; this is
because that’s the _PATH_BSHELL value for the libc of the Guile that
runs ‘guix environment’.  (This is a problem in the test environment
because of the wrong _PATH_BSHELL, but it happens to work well out side
of the test environment.)

Now, I’m not sure why the first ‘execve’ shell; normally shebangs are
interpreted directly by the kernel, in fs/binfmt_script.c.

It seems that the file mentioned in the shebang of ‘guile’ is correctly
mapped:

> [pid 32625] mount("/home/dave/Code/guix/test-tmp/store/xh177jawf1hl22wm1rzfq7dgn9iz67jy-bash", "/tmp/guix-directory.Datz1K//home/dave/Code/guix/test-tmp/store/xh177jawf1hl22wm1rzfq7dgn9iz67jy-bash", 0x1d97b30, MS_RDONLY|MS_BIND, NULL) = 0
> [pid 32625] mount("/home/dave/Code/guix/test-tmp/store/xh177jawf1hl22wm1rzfq7dgn9iz67jy-bash", "/tmp/guix-directory.Datz1K//home/dave/Code/guix/test-tmp/store/xh177jawf1hl22wm1rzfq7dgn9iz67jy-bash", 0x13c3b30, MS_RDONLY|MS_REMOUNT|MS_BIND, NULL) = 0

Could it be that it lacks the executable bit?

Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 14/15] scripts: environment: Add --container option.
  2015-10-11 19:34           ` Ludovic Courtès
@ 2015-10-17 10:05             ` Ludovic Courtès
  2015-10-22  1:23               ` Thompson, David
  0 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-10-17 10:05 UTC (permalink / raw)
  To: Thompson, David; +Cc: guix-devel, David Thompson

ludo@gnu.org (Ludovic Courtès) skribis:

> I think I got it.  First, note that:
>
> $ guix build guile-bootstrap 
> /gnu/store/aiz8db2gni401wc9fgidmcggxyb1czis-guile-bootstrap-2.0
> $ cat /gnu/store/aiz8db2gni401wc9fgidmcggxyb1czis-guile-bootstrap-2.0/bin/guile 
> #!/gnu/store/gvwf71vddp8c1d7ydqg02p43mgdjrx6s-bash
> export GUILE_SYSTEM_PATH=/gnu/store/aiz8db2gni401wc9fgidmcggxyb1czis-guile-bootstrap-2.0/share/guile/2.0
> export GUILE_SYSTEM_COMPILED_PATH=/gnu/store/aiz8db2gni401wc9fgidmcggxyb1czis-guile-bootstrap-2.0/lib/guile/2.0/ccache
> exec -a "$0" /gnu/store/aiz8db2gni401wc9fgidmcggxyb1czis-guile-bootstrap-2.0/bin/.guile-real "$@"
>
> So:
>
>> [pid 32626] execve("/home/dave/Code/guix/test-tmp/store/w8fsskwxr793yq6w3368x5k1p07syi3h-guile-bootstrap-2.0/bin/guile", ["guile", "-c", "(exit 42)"], [/* 6 vars */]) = -1 ENOEXEC (Exec format error)
>> [pid 32626] execve("/gnu/store/sybvv7vqvqqmijpn2ql1p6yk61cr5y3k-bash-static-4.3.39/bin/bash", ["/gnu/store/sybvv7vqvqqmijpn2ql1p"..., "/home/dave/Code/guix/test-tmp/st"..., "-c", "(exit 42)"], [/* 6 vars */]) = -1 ENOENT (No such file or directory)
>> [pid 32626] write(2, "In execvp of guile: No such file"..., 46In execvp of guile: No such file or directory
>> ) = 46
>
> The first ‘execve’ fails.

As discussed on IRC, this turned out to be due to the fact that the Bash
in Guile’s shebang was zero-sized.

This happened because the ‘mount-file-system’ procedure would truncate
that file, because the test store happens to be in $HOME, which was
already bind-mounted.

Commit 78981bb fixes it.

Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 14/15] scripts: environment: Add --container option.
  2015-10-17 10:05             ` Ludovic Courtès
@ 2015-10-22  1:23               ` Thompson, David
  2015-10-25 21:38                 ` Ludovic Courtès
  0 siblings, 1 reply; 65+ messages in thread
From: Thompson, David @ 2015-10-22  1:23 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

[-- Attachment #1: Type: text/plain, Size: 564 bytes --]

On Sat, Oct 17, 2015 at 6:05 AM, Ludovic Courtès <ludo@gnu.org> wrote:
> ludo@gnu.org (Ludovic Courtès) skribis:
>
> As discussed on IRC, this turned out to be due to the fact that the Bash
> in Guile’s shebang was zero-sized.
>
> This happened because the ‘mount-file-system’ procedure would truncate
> that file, because the test store happens to be in $HOME, which was
> already bind-mounted.
>
> Commit 78981bb fixes it.

Thank you!

I've added some tests and tweaked a couple of other things.  Updated
patch attached.  WDYT?

- Dave

[-- Attachment #2: 0001-scripts-environment-Add-container-option.patch --]
[-- Type: text/x-diff, Size: 25982 bytes --]

From a61c65357174263790a55e8785fc625209e11324 Mon Sep 17 00:00:00 2001
From: David Thompson <davet@gnu.org>
Date: Fri, 19 Jun 2015 08:57:44 -0400
Subject: [PATCH] scripts: environment: Add --container option.

* guix/scripts/system.scm (specification->file-system-mapping): Move from
  here...
* guix/ui.scm (specification->file-system-mapping): ... to here.
* guix/scripts/enviroment.scm (show-help): Show help for new options.
  (%options): Add --container --network, --expose, and --share options.
  (%network-configuration-files): New variable.
  (launch-environment, launch-environment/container, requisites*,
  inputs->requisites): New procedures.
  (guix-environment): Spawn new process in a container when requested.
* doc/guix.texi (Invoking guix environment): Document it.
* tests/guix-environment-container.sh: New file.
* Makefile.am (SH_TESTS): Add it.
---
 Makefile.am                         |   1 +
 doc/guix.texi                       |  56 ++++++++
 guix/scripts/environment.scm        | 277 ++++++++++++++++++++++++++++++------
 guix/scripts/system.scm             |  13 --
 guix/ui.scm                         |  19 +++
 tests/guix-environment-container.sh |  75 ++++++++++
 tests/guix-environment.sh           |   9 ++
 7 files changed, 395 insertions(+), 55 deletions(-)
 create mode 100644 tests/guix-environment-container.sh

diff --git a/Makefile.am b/Makefile.am
index 1427203..4f90b1d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -253,6 +253,7 @@ SH_TESTS =					\
   tests/guix-archive.sh				\
   tests/guix-authenticate.sh			\
   tests/guix-environment.sh			\
+  tests/guix-environment-container.sh		\
   tests/guix-graph.sh				\
   tests/guix-lint.sh
 
diff --git a/doc/guix.texi b/doc/guix.texi
index 99c10d8..7715b72 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -4681,6 +4681,18 @@ NumPy:
 guix environment --ad-hoc python2-numpy python-2.7 -- python
 @end example
 
+Sometimes it is desirable to isolate the environment as much as
+possible, for maximal purity and reproducibility.  In particular, when
+using Guix on a host distro that is not GuixSD, it is desirable to
+prevent access to @file{/usr/bin} and other system-wide resources from
+the development environment.  For example, the following command spawns
+a Guile REPL in a ``container'' where only the store and the current
+working directory are mounted:
+
+@example
+guix environment --ad-hoc --container guile -- guile
+@end example
+
 The available options are summarized below.
 
 @table @code
@@ -4741,6 +4753,49 @@ environment.
 @item --system=@var{system}
 @itemx -s @var{system}
 Attempt to build for @var{system}---e.g., @code{i686-linux}.
+
+@item --container
+@itemx -C
+@cindex container
+Run @var{command} within an isolated container.  The current working
+directory outside the container is mapped to @file{/env} inside the
+container.  Additionally, the spawned process runs as the current user
+outside the container, but has root privileges in the context of the
+container.
+
+@item --network
+@itemx -N
+For containers, share the network namespace with the host system.
+Containers created without this flag only have access to the loopback
+device.
+
+@item --expose=@var{source}[=@var{target}]
+For containers, expose the file system @var{source} from the host system
+as the read-only file system @var{target} within the container.  If
+@var{target} is not specified, @var{source} is used as the target mount
+point in the container.
+
+The example below spawns a Guile REPL in a container in which the user's
+home directory is accessible read-only via the @file{/exchange}
+directory:
+
+@example
+guix environment --container --expose=$HOME=/exchange guile -- guile
+@end example
+
+@item --share
+For containers, share the file system @var{source} from the host system
+as the writable file system @var{target} within the container.  If
+@var{target} is not specified, @var{source} is used as the target mount
+point in the container.
+
+The example below spawns a Guile REPL in a container in which the user's
+home directory is accessible for both reading and writing via the
+@file{/exchange} directory:
+
+@example
+guix environment --container --share=$HOME=/exchange guile -- guile
+@end example
 @end table
 
 It also supports all of the common build options that @command{guix
@@ -7064,6 +7119,7 @@ This command also installs GRUB on the device specified in
 @item vm
 @cindex virtual machine
 @cindex VM
+@anchor{guix system vm}
 Build a virtual machine that contain the operating system declared in
 @var{file}, and return a script to run that virtual machine (VM).
 Arguments given to the script are passed as is to QEMU.
diff --git a/guix/scripts/environment.scm b/guix/scripts/environment.scm
index 2408420..2221033 100644
--- a/guix/scripts/environment.scm
+++ b/guix/scripts/environment.scm
@@ -25,13 +25,19 @@
   #:use-module (guix profiles)
   #:use-module (guix search-paths)
   #:use-module (guix utils)
+  #:use-module (guix build utils)
   #:use-module (guix monads)
   #:use-module ((guix gexp) #:select (lower-inputs))
   #:use-module (guix scripts)
   #:use-module (guix scripts build)
+  #:use-module (gnu build linux-container)
+  #:use-module (gnu system linux-container)
+  #:use-module (gnu system file-systems)
   #:use-module (gnu packages)
+  #:use-module (gnu packages bash)
   #:use-module (ice-9 format)
   #:use-module (ice-9 match)
+  #:use-module (ice-9 rdelim)
   #:use-module (srfi srfi-1)
   #:use-module (srfi srfi-11)
   #:use-module (srfi srfi-26)
@@ -60,6 +66,12 @@ OUTPUT) tuples."
 (define %default-shell
   (or (getenv "SHELL") "/bin/sh"))
 
+(define %network-configuration-files
+  '("/etc/resolv.conf"
+    "/etc/nsswitch.conf"
+    "/etc/services"
+    "/etc/hosts"))
+
 (define (purify-environment)
   "Unset almost all environment variables.  A small number of variables such
 as 'HOME' and 'USER' are left untouched."
@@ -124,6 +136,18 @@ COMMAND or an interactive shell in that environment.\n"))
       --search-paths     display needed environment variable definitions"))
   (display (_ "
   -s, --system=SYSTEM    attempt to build for SYSTEM--e.g., \"i686-linux\""))
+  (display (_ "
+  -C, --container        run command within an isolated container"))
+  (display (_ "
+  -N, --network          allow containers to access the network"))
+  (display (_ "
+      --share=SPEC       for containers, share writable host file system
+                         according to SPEC"))
+  (display (_ "
+      --expose=SPEC      for containers, expose read-only host file system
+                         according to SPEC"))
+  (display (_ "
+      --bootstrap        use bootstrap binaries to build the environment"))
   (newline)
   (show-build-options-help)
   (newline)
@@ -176,6 +200,25 @@ COMMAND or an interactive shell in that environment.\n"))
                  (lambda (opt name arg result)
                    (alist-cons 'system arg
                                (alist-delete 'system result eq?))))
+         (option '(#\C "container") #f #f
+                 (lambda (opt name arg result)
+                   (alist-cons 'container? #t result)))
+         (option '(#\N "network") #f #f
+                 (lambda (opt name arg result)
+                   (alist-cons 'network? #t result)))
+         (option '("share") #t #f
+                 (lambda (opt name arg result)
+                   (alist-cons 'file-system-mapping
+                               (specification->file-system-mapping arg #t)
+                               result)))
+         (option '("expose") #t #f
+                 (lambda (opt name arg result)
+                   (alist-cons 'file-system-mapping
+                               (specification->file-system-mapping arg #f)
+                               result)))
+         (option '("bootstrap") #f #f
+                 (lambda (opt name arg result)
+                   (alist-cons 'bootstrap? #t result)))
          %standard-build-options))
 
 (define (pick-all alist key)
@@ -231,6 +274,132 @@ OUTPUT) tuples, using the build options in OPTS."
                (built-derivations derivations)
                (return derivations))))))))
 
+(define requisites* (store-lift requisites))
+
+(define (inputs->requisites inputs)
+  "Convert INPUTS, a list of input tuples or store path strings, into a set of
+requisite store items i.e. the union closure of all the inputs."
+  (define (input->requisites input)
+    (requisites*
+     (match input
+       ((drv output)
+        (derivation->output-path drv output))
+       ((drv)
+        (derivation->output-path drv))
+       ((? direct-store-path? path)
+        path))))
+
+  (mlet %store-monad ((reqs (sequence %store-monad
+                                      (map input->requisites inputs))))
+    (return (delete-duplicates (concatenate reqs)))))
+
+(define exit/status (compose exit status:exit-val))
+(define primitive-exit/status (compose primitive-exit status:exit-val))
+
+(define (launch-environment command inputs paths pure?)
+  "Run COMMAND in a new environment containing INPUTS, using the native search
+paths defined by the list PATHS.  When PURE?, pre-existing environment
+variables are cleared before setting the new ones."
+  (create-environment inputs paths pure?)
+  (apply system* command))
+
+(define* (launch-environment/container #:key command bash user-mappings
+                                       inputs paths network?)
+  "Run COMMAND within a Linux container.  The environment features INPUTS, a
+list of derivations to be shared from the host system.  Environment variables
+are set according to PATHS, a list of native search paths.  The global shell
+is BASH, a file name for a GNU Bash binary in the store.  When NETWORK?,
+access to the host system network is permitted.  USER-MAPPINGS, a list of file
+system mappings, contains the user-specified host file systems to mount inside
+the container."
+  (mlet %store-monad ((reqs (inputs->requisites
+                             (cons (direct-store-path bash) inputs))))
+    (return
+     (let* ((cwd (getcwd))
+            ;; Bind-mount all requisite store items, user-specified mappings,
+            ;; /bin/sh, the current working directory, and possibly networking
+            ;; configuration files within the container.
+            (mappings
+             (append user-mappings
+                     ;; Current working directory.
+                     (list (file-system-mapping
+                            (source cwd)
+                            (target cwd)
+                            (writable? #t)))
+                     ;; When in Rome, do as Nix build.cc does: Automagically
+                     ;; map common network configuration files.
+                     (if network?
+                         (filter-map (lambda (file)
+                                       (and (file-exists? file)
+                                            (file-system-mapping
+                                             (source file)
+                                             (target file)
+                                             (writable? #f))))
+                                     %network-configuration-files)
+                         '())
+                     ;; Mappings for the union closure of all inputs.
+                     (map (lambda (dir)
+                            (file-system-mapping
+                             (source dir)
+                             (target dir)
+                             (writable? #f)))
+                          reqs)))
+            (file-systems (append %container-file-systems
+                                  (map mapping->file-system mappings))))
+       ;; (pk 'mounts (map file-system->spec file-systems))
+       (exit/status
+        (call-with-container (map file-system->spec file-systems)
+          (lambda ()
+            ;; Setup global shell.
+            (mkdir-p "/bin")
+            (symlink bash "/bin/sh")
+
+            ;; Setup directory for temporary files.
+            (mkdir-p "/tmp")
+            (for-each (lambda (var)
+                        (setenv var "/tmp"))
+                      ;; The same variables as in Nix's 'build.cc'.
+                      '("TMPDIR" "TEMPDIR" "TMP" "TEMP"))
+
+            ;; From Nix build.cc:
+            ;;
+            ;; Set HOME to a non-existing path to prevent certain
+            ;; programs from using /etc/passwd (or NIS, or whatever)
+            ;; to locate the home directory (for example, wget looks
+            ;; for ~/.wgetrc).  I.e., these tools use /etc/passwd if
+            ;; HOME is not set, but they will just assume that the
+            ;; settings file they are looking for does not exist if
+            ;; HOME is set but points to some non-existing path.
+            (setenv "HOME" "/homeless-shelter")
+
+            ;; For convenience, start in the user's current working
+            ;; directory rather than the root directory.
+            (chdir cwd)
+
+            (primitive-exit/status
+             ;; A container's environment is already purified, so no need to
+             ;; request it be purified again.
+             (launch-environment command inputs paths #f)))
+          #:namespaces (if network?
+                           (delq 'net %namespaces) ; share host network
+                           %namespaces)))))))
+
+(define (environment-bash container? bootstrap? system)
+  "Return a monadic value in the store monad for the version of GNU Bash
+needed in the environment for SYSTEM, if any.  If CONTAINER? is #f, return #f.
+If CONTAINER? and BOOTSTRAP?, return the store path for the bootstrap Bash.
+Otherwise, return the derivation for the Bash package."
+  (with-monad %store-monad
+    (cond
+     ((and container? (not bootstrap?))
+      (package->derivation bash))
+     ;; Use the bootstrap Bash instead.
+     ((and container? bootstrap?)
+      (interned-file
+       (search-bootstrap-binary "bash" system)))
+     (else
+      (return #f)))))
+
 (define (parse-args args)
   "Parse the list of command line arguments ARGS."
   (define (handle-argument arg result)
@@ -248,52 +417,76 @@ OUTPUT) tuples, using the build options in OPTS."
 ;; Entry point.
 (define (guix-environment . args)
   (with-error-handling
-    (let* ((opts     (parse-args args))
-           (pure?    (assoc-ref opts 'pure))
-           (ad-hoc?  (assoc-ref opts 'ad-hoc?))
-           (command  (assoc-ref opts 'exec))
-           (packages (pick-all (options/resolve-packages opts) 'package))
-           (inputs   (if ad-hoc?
-                         (append-map (match-lambda
-                                       ((package output)
-                                        (package+propagated-inputs package
-                                                                   output)))
-                                     packages)
-                         (append-map (compose bag-transitive-inputs
-                                              package->bag
-                                              first)
-                                     packages)))
-           (paths    (delete-duplicates
-                      (cons $PATH
-                            (append-map (match-lambda
-                                          ((label (? package? p) _ ...)
-                                           (package-native-search-paths p))
-                                          (_
-                                           '()))
-                                        inputs))
-                      eq?)))
+    (let* ((opts       (parse-args args))
+           (pure?      (assoc-ref opts 'pure))
+           (container? (assoc-ref opts 'container?))
+           (network?   (assoc-ref opts 'network?))
+           (ad-hoc?    (assoc-ref opts 'ad-hoc?))
+           (bootstrap? (assoc-ref opts 'bootstrap?))
+           (system     (assoc-ref opts 'system))
+           (command    (assoc-ref opts 'exec))
+           (packages   (pick-all (options/resolve-packages opts) 'package))
+           (mappings   (pick-all opts 'file-system-mapping))
+           (inputs     (if ad-hoc?
+                           (append-map (match-lambda
+                                        ((package output)
+                                         (package+propagated-inputs package
+                                                                    output)))
+                                       packages)
+                           (append-map (compose bag-transitive-inputs
+                                                package->bag
+                                                first)
+                                       packages)))
+           (paths      (delete-duplicates
+                        (cons $PATH
+                              (append-map (match-lambda
+                                           ((label (? package? p) _ ...)
+                                            (package-native-search-paths p))
+                                           (_
+                                            '()))
+                                          inputs))
+                        eq?)))
       (with-store store
         (run-with-store store
-          (mlet %store-monad ((inputs (lower-inputs
-                                       (map (match-lambda
+          (mlet* %store-monad ((inputs (lower-inputs
+                                        (map (match-lambda
                                               ((label item)
                                                (list item))
                                               ((label item output)
                                                (list item output)))
-                                            inputs)
-                                       #:system (assoc-ref opts 'system))))
+                                             inputs)
+                                        #:system system))
+                               ;; Containers need a Bourne shell at /bin/sh.
+                               (bash (environment-bash container?
+                                                       bootstrap?
+                                                       system)))
             (mbegin %store-monad
-              ;; First build INPUTS.  This is necessary even for
-              ;; --search-paths.
-              (build-inputs inputs opts)
-              (cond ((assoc-ref opts 'dry-run?)
-                     (return #t))
-                    ((assoc-ref opts 'search-paths)
-                     (show-search-paths inputs paths pure?)
-                     (return #t))
-                    (else
-                     (create-environment inputs paths pure?)
-                     (return
-                      (exit
-                       (status:exit-val
-                        (apply system* command)))))))))))))
+              ;; First build the inputs.  This is necessary even for
+              ;; --search-paths.  Additionally, we might need to build bash
+              ;; for a container.
+              (build-inputs (if (derivation? bash)
+                                `((,bash "out") ,@inputs)
+                                inputs)
+                            opts)
+              (cond
+               ((assoc-ref opts 'dry-run?)
+                (return #t))
+               ((assoc-ref opts 'search-paths)
+                (show-search-paths inputs paths pure?)
+                (return #t))
+               (container?
+                (let ((bash-binary
+                       (if bootstrap?
+                           bash
+                           (string-append (derivation->output-path bash)
+                                          "/bin/sh"))))
+                  (launch-environment/container #:command command
+                                                #:bash bash-binary
+                                                #:user-mappings mappings
+                                                #:inputs inputs
+                                                #:paths paths
+                                                #:network? network?)))
+               (else
+                (return
+                 (exit/status
+                  (launch-environment command inputs paths pure?))))))))))))
diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm
index b5da57a..8775267 100644
--- a/guix/scripts/system.scm
+++ b/guix/scripts/system.scm
@@ -488,19 +488,6 @@ Build the operating system declared in FILE according to ACTION.\n"))
   (newline)
   (show-bug-report-information))
 
-(define (specification->file-system-mapping spec writable?)
-  "Read the SPEC and return the corresponding <file-system-mapping>."
-  (let ((index (string-index spec #\=)))
-    (if index
-        (file-system-mapping
-         (source (substring spec 0 index))
-         (target (substring spec (+ 1 index)))
-         (writable? writable?))
-        (file-system-mapping
-         (source spec)
-         (target spec)
-         (writable? writable?)))))
-
 (define %options
   ;; Specifications of the command-line options.
   (cons* (option '(#\h "help") #f #f
diff --git a/guix/ui.scm b/guix/ui.scm
index fb8121c..9cc1908 100644
--- a/guix/ui.scm
+++ b/guix/ui.scm
@@ -34,6 +34,7 @@
   #:use-module (guix serialization)
   #:use-module ((guix build utils) #:select (mkdir-p))
   #:use-module ((guix licenses) #:select (license? license-name))
+  #:use-module (gnu system file-systems)
   #:use-module (srfi srfi-1)
   #:use-module (srfi srfi-11)
   #:use-module (srfi srfi-19)
@@ -80,6 +81,7 @@
             string->recutils
             package->recutils
             package-specification->name+version+output
+            specification->file-system-mapping
             string->generations
             string->duration
             run-guix-command
@@ -966,6 +968,23 @@ optionally contain a version number and an output name, as in these examples:
                  (package-name->name+version name)))
     (values name version sub-drv)))
 
+(define (specification->file-system-mapping spec writable?)
+  "Read the SPEC and return the corresponding <file-system-mapping>.  SPEC is
+a string of the form \"SOURCE\" or \"SOURCE=TARGET\".  The former specifies
+that SOURCE from the host should be mounted at SOURCE in the other system.
+The latter format specifies that SOURCE from the host should be mounted at
+TARGET in the other system."
+  (let ((index (string-index spec #\=)))
+    (if index
+        (file-system-mapping
+         (source (substring spec 0 index))
+         (target (substring spec (+ 1 index)))
+         (writable? writable?))
+        (file-system-mapping
+         (source spec)
+         (target spec)
+         (writable? writable?)))))
+
 \f
 ;;;
 ;;; Command-line option processing.
diff --git a/tests/guix-environment-container.sh b/tests/guix-environment-container.sh
new file mode 100644
index 0000000..9c3e93d
--- /dev/null
+++ b/tests/guix-environment-container.sh
@@ -0,0 +1,75 @@
+# GNU Guix --- Functional package management for GNU
+# Copyright © 2015 David Thompson <davet@gnu.org>
+#
+# This file is part of GNU Guix.
+#
+# GNU Guix is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or (at
+# your option) any later version.
+#
+# GNU Guix is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+#
+# Test 'guix environment'.
+#
+
+set -e
+
+guix environment --version
+
+tmpdir="t-guix-environment-$$"
+trap 'rm -r "$tmpdir"' EXIT
+
+mkdir "$tmpdir"
+
+# Make sure the exit value is preserved.
+if guix environment --container --ad-hoc --bootstrap guile-bootstrap \
+        -- guile -c '(exit 42)'
+then
+    false
+else
+    test $? = 42
+fi
+
+# Make sure that the right directories are mapped.
+mount_test_code="
+(use-modules (ice-9 rdelim)
+             (ice-9 match)
+             (srfi srfi-1))
+
+(define mappings
+  (filter-map (lambda (line)
+                (match (string-split line #\space)
+                  ;; Empty line.
+                  ((\"\") #f)
+                  ;; Ignore these types of file systems.
+                  ((_ _ (or \"tmpfs\" \"proc\" \"sysfs\" \"devtmpfs\"
+                            \"devpts\" \"cgroup\" \"mqueue\") _ _ _)
+                   #f)
+                  ((_ mount _ _ _ _)
+                   mount)))
+              (string-split (call-with-input-file \"/proc/mounts\" read-string)
+                            #\newline)))
+
+(for-each (lambda (mount)
+            (display mount)
+            (newline))
+          mappings)"
+
+guix environment --container --ad-hoc --bootstrap guile-bootstrap \
+     -- guile -c "$mount_test_code" > $tmpdir/mounts
+
+test `wc -l < $tmpdir/mounts` -eq 3
+
+grep -e "$PWD$" $tmpdir/mounts # current directory
+grep $(guix build guile-bootstrap) $tmpdir/mounts
+grep -e "$NIX_STORE_DIR/.*-bash" $tmpdir/mounts # bootstrap bash
+
+rm $tmpdir/mounts
diff --git a/tests/guix-environment.sh b/tests/guix-environment.sh
index f91c78a..2b66f66 100644
--- a/tests/guix-environment.sh
+++ b/tests/guix-environment.sh
@@ -55,6 +55,15 @@ else
     test $? = 42
 fi
 
+# Make sure the exit value is preserved for containers, too.
+if guix environment --container --ad-hoc --bootstrap guile-bootstrap \
+        -- guile -c '(exit 42)'
+then
+    false
+else
+    test $? = 42
+fi
+
 if guile -c '(getaddrinfo "www.gnu.org" "80" AI_NUMERICSERV)' 2> /dev/null
 then
     # Compute the build environment for the initial GNU Make.
-- 
2.5.0


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* Re: [PATCH 14/15] scripts: environment: Add --container option.
  2015-10-22  1:23               ` Thompson, David
@ 2015-10-25 21:38                 ` Ludovic Courtès
  2015-10-26  0:35                   ` Thompson, David
  0 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-10-25 21:38 UTC (permalink / raw)
  To: Thompson, David; +Cc: guix-devel, David Thompson

"Thompson, David" <dthompson2@worcester.edu> skribis:

> From a61c65357174263790a55e8785fc625209e11324 Mon Sep 17 00:00:00 2001
> From: David Thompson <davet@gnu.org>
> Date: Fri, 19 Jun 2015 08:57:44 -0400
> Subject: [PATCH] scripts: environment: Add --container option.
>
> * guix/scripts/system.scm (specification->file-system-mapping): Move from
>   here...
> * guix/ui.scm (specification->file-system-mapping): ... to here.
> * guix/scripts/enviroment.scm (show-help): Show help for new options.
>   (%options): Add --container --network, --expose, and --share options.
>   (%network-configuration-files): New variable.
>   (launch-environment, launch-environment/container, requisites*,
>   inputs->requisites): New procedures.
>   (guix-environment): Spawn new process in a container when requested.
> * doc/guix.texi (Invoking guix environment): Document it.
> * tests/guix-environment-container.sh: New file.
> * Makefile.am (SH_TESTS): Add it.

[...]

> --- a/tests/guix-environment.sh
> +++ b/tests/guix-environment.sh
> @@ -55,6 +55,15 @@ else
>      test $? = 42
>  fi
>  
> +# Make sure the exit value is preserved for containers, too.
> +if guix environment --container --ad-hoc --bootstrap guile-bootstrap \
> +        -- guile -c '(exit 42)'
> +then
> +    false
> +else
> +    test $? = 42
> +fi

I think this bit is a leftover from a previous attempt that can now be
removed (guix-environment-container.sh contains the same test.)

OK to push with this change!  Exciting stuff, thank you!

Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 14/15] scripts: environment: Add --container option.
  2015-10-25 21:38                 ` Ludovic Courtès
@ 2015-10-26  0:35                   ` Thompson, David
  2015-10-27 10:13                     ` Ludovic Courtès
  0 siblings, 1 reply; 65+ messages in thread
From: Thompson, David @ 2015-10-26  0:35 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

On Sun, Oct 25, 2015 at 5:38 PM, Ludovic Courtès <ludo@gnu.org> wrote:
> "Thompson, David" <dthompson2@worcester.edu> skribis:
>
>> From a61c65357174263790a55e8785fc625209e11324 Mon Sep 17 00:00:00 2001
>> From: David Thompson <davet@gnu.org>
>> Date: Fri, 19 Jun 2015 08:57:44 -0400
>> Subject: [PATCH] scripts: environment: Add --container option.
>>
>> * guix/scripts/system.scm (specification->file-system-mapping): Move from
>>   here...
>> * guix/ui.scm (specification->file-system-mapping): ... to here.
>> * guix/scripts/enviroment.scm (show-help): Show help for new options.
>>   (%options): Add --container --network, --expose, and --share options.
>>   (%network-configuration-files): New variable.
>>   (launch-environment, launch-environment/container, requisites*,
>>   inputs->requisites): New procedures.
>>   (guix-environment): Spawn new process in a container when requested.
>> * doc/guix.texi (Invoking guix environment): Document it.
>> * tests/guix-environment-container.sh: New file.
>> * Makefile.am (SH_TESTS): Add it.
>
> [...]
>
>> --- a/tests/guix-environment.sh
>> +++ b/tests/guix-environment.sh
>> @@ -55,6 +55,15 @@ else
>>      test $? = 42
>>  fi
>>
>> +# Make sure the exit value is preserved for containers, too.
>> +if guix environment --container --ad-hoc --bootstrap guile-bootstrap \
>> +        -- guile -c '(exit 42)'
>> +then
>> +    false
>> +else
>> +    test $? = 42
>> +fi
>
> I think this bit is a leftover from a previous attempt that can now be
> removed (guix-environment-container.sh contains the same test.)

Thanks for catching this.  I could've sworn I had deduplicated that!

> OK to push with this change!  Exciting stuff, thank you!

Thanks for all of your help.  Pushed!  Woooooooooooooooooo!!!

- Dave

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 13/15] scripts: system: Add 'container' action.
  2015-07-07 14:05   ` Ludovic Courtès
@ 2015-10-27  0:24     ` Thompson, David
  2015-10-27 17:41       ` Ludovic Courtès
  0 siblings, 1 reply; 65+ messages in thread
From: Thompson, David @ 2015-10-27  0:24 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

[-- Attachment #1: Type: text/plain, Size: 261 bytes --]

So, It's been awhile. I cleaned up the docs as per your suggestions.
Attaching the updated patch just so someone can give it another look
before I push it.  My "system: container: Update to new service API."
patch must be pushed first, though.

Thanks!

- Dave

[-- Attachment #2: 0001-scripts-system-Add-container-action.patch --]
[-- Type: text/x-diff, Size: 5866 bytes --]

From 5dde31ef51502726a2915cc4faba81f4fadb851c Mon Sep 17 00:00:00 2001
From: David Thompson <davet@gnu.org>
Date: Mon, 8 Jun 2015 09:04:38 -0400
Subject: [PATCH] scripts: system: Add 'container' action.

* guix/scripts/system.scm (show-help): Display 'container' action.
  (system-derivation-for-action, guix-system): Add 'container' case.
  (perform-action): Skip GRUB config generation when building a container.
* doc/guix.texi (Invoking guix system): Document it.
---
 doc/guix.texi                  | 21 +++++++++++++++++++++
 gnu/system/linux-container.scm |  7 ++++++-
 guix/scripts/system.scm        | 19 +++++++++++++------
 3 files changed, 40 insertions(+), 7 deletions(-)

diff --git a/doc/guix.texi b/doc/guix.texi
index 20bf284..3491cfb 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -7183,6 +7183,27 @@ using the following command:
 # dd if=$(guix system disk-image my-os.scm) of=/dev/sdc
 @end example
 
+@item container
+Return a script to run the operating system declared in @var{file}
+within a container.  Containers are a set of lightweight isolation
+mechanisms provided by the kernel Linux-libre.  Containers are
+substantially less resource-demanding than full virtual machines since
+the kernel, shared objects, and other resources can be shared with the
+host system; this also means they provide thinner isolation.
+
+Currently, the script must be run as root in order to support more than
+a single user and group.  The container shares its store with the host
+system.
+
+As with the @code{vm} action (@pxref{guix system vm}), additional file
+systems to be shared between the host and container can be specified
+using the @option{--share} and @option{--expose} options:
+
+@example
+guix system container my-config.scm \
+   --expose=$HOME --share=$HOME/tmp=/exchange
+@end example
+
 @end table
 
 @var{options} can contain any of the common build options provided by
diff --git a/gnu/system/linux-container.scm b/gnu/system/linux-container.scm
index abe816f..c2eb773 100644
--- a/gnu/system/linux-container.scm
+++ b/gnu/system/linux-container.scm
@@ -108,7 +108,12 @@ that will be shared with the host system."
                 (setenv "TMPDIR" "/tmp")
                 (setenv "GUIX_NEW_SYSTEM" #$os-drv)
                 (for-each mkdir-p '("/run" "/bin" "/etc" "/home" "/var"))
-                (primitive-load (string-append #$os-drv "/boot"))))))
+                (primitive-load (string-append #$os-drv "/boot")))
+              ;; A range of 65536 uid/gids is used to cover 16 bits worth of
+              ;; users and groups, which is sufficient for most cases.
+              ;;
+              ;; See: http://www.freedesktop.org/software/systemd/man/systemd-nspawn.html#--private-users=
+              #:host-uids 65536)))
 
       (gexp->script "run-container" script
                     #:modules '((ice-9 match)
diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm
index d847c75..4bf9ac9 100644
--- a/guix/scripts/system.scm
+++ b/guix/scripts/system.scm
@@ -34,6 +34,7 @@
   #:use-module (gnu build install)
   #:use-module (gnu system)
   #:use-module (gnu system file-systems)
+  #:use-module (gnu system linux-container)
   #:use-module (gnu system vm)
   #:use-module (gnu system grub)
   #:use-module (gnu services)
@@ -406,6 +407,8 @@ PATTERN, a string.  When PATTERN is #f, display all the system generations."
   (case action
     ((build init reconfigure)
      (operating-system-derivation os))
+    ((container)
+     (container-script os #:mappings mappings))
     ((vm-image)
      (system-qemu-image os #:disk-image-size image-size))
     ((vm)
@@ -438,10 +441,12 @@ building anything."
                                                 #:full-boot? full-boot?
                                                 #:mappings mappings))
        (grub      (package->derivation grub))
-       (grub.cfg  (operating-system-grub.cfg os
-                                             (if (eq? 'init action)
-                                                 '()
-                                                 (previous-grub-entries))))
+       (grub.cfg  (if (eq? 'container action)
+                      (return #f)
+                      (operating-system-grub.cfg os
+                                                 (if (eq? 'init action)
+                                                     '()
+                                                     (previous-grub-entries)))))
        (drvs   -> (if (and grub? (memq action '(init reconfigure)))
                       (list sys grub grub.cfg)
                       (list sys)))
@@ -524,6 +529,8 @@ Build the operating system declared in FILE according to ACTION.\n"))
   (display (_ "\
    build            build the operating system without installing anything\n"))
   (display (_ "\
+  container         build a Linux container that shares the host's store\n"))
+  (display (_ "\
    vm               build a virtual machine image that shares the host's store\n"))
   (display (_ "\
    vm-image         build a freestanding virtual machine image\n"))
@@ -694,7 +701,7 @@ argument list and OPTS is the option alist."
         (alist-cons 'argument arg result)
         (let ((action (string->symbol arg)))
           (case action
-            ((build vm vm-image disk-image reconfigure init
+            ((build container vm vm-image disk-image reconfigure init
               extension-graph dmd-graph list-generations)
              (alist-cons 'action action result))
             (else (leave (_ "~a: unknown action~%") action))))))
@@ -723,7 +730,7 @@ argument list and OPTS is the option alist."
         (exit 1))
 
       (case action
-        ((build vm vm-image disk-image reconfigure)
+        ((build container vm vm-image disk-image reconfigure)
          (unless (= count 1)
            (fail)))
         ((init)
-- 
2.5.0


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* Re: [PATCH 15/15] scripts: Add 'container' subcommand.
  2015-07-07 14:50   ` Ludovic Courtès
@ 2015-10-27  0:31     ` Thompson, David
  2015-10-27 17:46       ` Ludovic Courtès
  0 siblings, 1 reply; 65+ messages in thread
From: Thompson, David @ 2015-10-27  0:31 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

[-- Attachment #1: Type: text/plain, Size: 55 bytes --]

Dusting this patch off.  Here's a fresh patch!

- Dave

[-- Attachment #2: 0001-scripts-Add-container-subcommand.patch --]
[-- Type: text/x-diff, Size: 10095 bytes --]

From f5312c2445d774c9355c947d3c748d064740246e Mon Sep 17 00:00:00 2001
From: David Thompson <davet@gnu.org>
Date: Wed, 1 Jul 2015 20:32:07 -0400
Subject: [PATCH] scripts: Add 'container' subcommand.

* guix/scripts/container.scm: New file.
* guix/scripts/container/exec.scm: New file.
* po/guix/POTFILES.in: Add them.
* Makefile.am (MODULES): Add them.
* doc/guix.texi (Invoking guix container): New section.
---
 Makefile.am                     |  2 +
 doc/guix.texi                   | 54 ++++++++++++++++++++++++++
 guix/scripts/container.scm      | 63 ++++++++++++++++++++++++++++++
 guix/scripts/container/exec.scm | 86 +++++++++++++++++++++++++++++++++++++++++
 po/guix/POTFILES.in             |  2 +
 5 files changed, 207 insertions(+)
 create mode 100644 guix/scripts/container.scm
 create mode 100644 guix/scripts/container/exec.scm

diff --git a/Makefile.am b/Makefile.am
index 4f90b1d..1582af3 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -128,6 +128,8 @@ MODULES =					\
   guix/scripts/edit.scm				\
   guix/scripts/size.scm				\
   guix/scripts/graph.scm			\
+  guix/scripts/container.scm			\
+  guix/scripts/container/exec.scm		\
   guix.scm					\
   $(GNU_SYSTEM_MODULES)
 
diff --git a/doc/guix.texi b/doc/guix.texi
index 3491cfb..271b24b 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -144,6 +144,7 @@ Utilities
 * Invoking guix environment::   Setting up development environments.
 * Invoking guix publish::       Sharing substitutes.
 * Invoking guix challenge::     Challenging substitute servers.
+* Invoking guix container::     Process isolation.
 
 GNU Distribution
 
@@ -3582,6 +3583,7 @@ programming interface of Guix in a convenient way.
 * Invoking guix environment::   Setting up development environments.
 * Invoking guix publish::       Sharing substitutes.
 * Invoking guix challenge::     Challenging substitute servers.
+* Invoking guix container::     Process isolation.
 @end menu
 
 @node Invoking guix build
@@ -4985,6 +4987,58 @@ URLs to compare to.
 @end table
 
 
+@node Invoking guix container
+@section Invoking @command{guix container}
+@cindex container
+
+Note: This tool is experimental.  The interface is subject to radical
+change in the future.
+
+The purpose of @command{guix container} is to manipulate processes
+running within an isolated environment, commonly known as a
+``container,'' typically created by the @command{guix environment}
+(@pxref{Invoking guix environment}) and @command{guix system container}
+(@pxref{Invoking guix system}) commands.
+
+The general syntax is:
+
+@example
+guix container @var{action} @var{options}@dots{}
+@end example
+
+@var{action} specifies the operation to perform with a container, and
+@var{options} specifies the context-specific arguments for the action.
+
+The following actions are available:
+
+@table @code
+@item exec
+Execute a command within the context of a running container.
+
+The syntax is:
+
+@example
+guix container exec @var{pid} @var{program} @var{arguments}@dots{}
+@end example
+
+@var{pid} specifies the process ID of the running container.
+@var{program} specifies an executable file name within the container's
+root file system.  @var{arguments} are the additional options that will
+be passed to @var{program}.
+
+The following command launches an interactive login shell inside a
+GuixSD container, started by @command{guix system container}, and whose
+process ID is 9001:
+
+@example
+guix container exec 9001 /run/current-system/profile/bin/bash --login
+@end example
+
+Note that the @var{pid} cannot be the parent process of a container.  It
+must be the container's PID 1 or one of its child processes.
+
+@end table
+
 @c *********************************************************************
 @node GNU Distribution
 @chapter GNU Distribution
diff --git a/guix/scripts/container.scm b/guix/scripts/container.scm
new file mode 100644
index 0000000..cd9f345
--- /dev/null
+++ b/guix/scripts/container.scm
@@ -0,0 +1,63 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2015 David Thompson <davet@gnu.org>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (guix scripts container)
+  #:use-module (ice-9 match)
+  #:use-module (guix ui)
+  #:export (guix-container))
+
+(define (show-help)
+  (display (_ "Usage: guix container ACTION ARGS...
+Build and manipulate Linux containers.\n"))
+  (newline)
+  (display (_ "The valid values for ACTION are:\n"))
+  (newline)
+  (display (_ "\
+   exec            execute a command inside of an existing container\n"))
+  (newline)
+  (display (_ "
+  -h, --help             display this help and exit"))
+  (display (_ "
+  -V, --version          display version information and exit"))
+  (newline)
+  (show-bug-report-information))
+
+(define %actions '("exec"))
+
+(define (resolve-action name)
+  (let ((module (resolve-interface
+                 `(guix scripts container ,(string->symbol name))))
+        (proc (string->symbol (string-append "guix-container-" name))))
+    (module-ref module proc)))
+
+(define (guix-container . args)
+  (with-error-handling
+    (match args
+      (()
+       (format (current-error-port)
+               (_ "guix container: missing action~%")))
+      ((or ("-h") ("--help"))
+       (show-help)
+       (exit 0))
+      (("--version")
+       (show-version-and-exit "guix container"))
+      ((action args ...)
+       (if (member action %actions)
+           (apply (resolve-action action) args)
+           (format (current-error-port)
+                   (_ "guix container: invalid action~%")))))))
diff --git a/guix/scripts/container/exec.scm b/guix/scripts/container/exec.scm
new file mode 100644
index 0000000..b842fd3
--- /dev/null
+++ b/guix/scripts/container/exec.scm
@@ -0,0 +1,86 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2015 David Thompson <davet@gnu.org>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (guix scripts container exec)
+  #:use-module (ice-9 match)
+  #:use-module (srfi srfi-1)
+  #:use-module (srfi srfi-11)
+  #:use-module (srfi srfi-37)
+  #:use-module (guix scripts)
+  #:use-module (guix ui)
+  #:use-module (guix utils)
+  #:use-module (gnu build linux-container)
+  #:export (guix-container-exec))
+
+(define %options
+  (list (option '(#\h "help") #f #f
+                (lambda args
+                  (show-help)
+                  (exit 0)))
+        (option '(#\V "version") #f #f
+                (lambda args
+                  (show-version-and-exit "guix container exec")))))
+
+(define (show-help)
+  (display (_ "Usage: guix container exec PID COMMAND [ARGS...]
+Execute COMMMAND within the container process PID.\n"))
+  (newline)
+  (display (_ "
+  -h, --help             display this help and exit"))
+  (display (_ "
+  -V, --version          display version information and exit"))
+  (newline)
+  (show-bug-report-information))
+
+(define (partition-args args)
+  "Split ARGS into two lists; one containing the arguments for this program,
+and the other containing arguments for the command to be executed."
+  (break (lambda (arg)
+           ;; Split after the pid argument.
+           (not (false-if-exception (string->number arg))))
+         args))
+
+(define (guix-container-exec . args)
+  (define (handle-argument arg result)
+    (if (assoc-ref result 'pid)
+        (leave (_ "~a: extraneous argument~%") arg)
+        (alist-cons 'pid (string->number* arg) result)))
+
+  (with-error-handling
+    (let-values (((args command) (partition-args args)))
+      (let* ((opts (parse-command-line args %options '(())
+                                       #:argument-handler
+                                       handle-argument))
+             (pid  (assoc-ref opts 'pid)))
+
+        (unless pid
+          (leave (_ "no pid specified~%")))
+
+        (when (null? command)
+          (leave (_ "no command specified~%")))
+
+        (unless (file-exists? (string-append "/proc/" (number->string pid)))
+          (leave (_ "no such process ~d~%") pid))
+
+        (let ((result (container-excursion pid
+                        (lambda ()
+                          (match command
+                            ((program . program-args)
+                             (apply execlp program program program-args)))))))
+          (unless (zero? result)
+            (leave (_ "exec failed with status ~d~%") result)))))))
diff --git a/po/guix/POTFILES.in b/po/guix/POTFILES.in
index 0c4e4f8..6197529 100644
--- a/po/guix/POTFILES.in
+++ b/po/guix/POTFILES.in
@@ -23,6 +23,8 @@ guix/scripts/edit.scm
 guix/scripts/size.scm
 guix/scripts/graph.scm
 guix/scripts/challenge.scm
+guix/scripts/container.scm
+guix/scripts/container/exec.scm
 guix/upstream.scm
 guix/ui.scm
 guix/http-client.scm
-- 
2.5.0


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* Re: [PATCH 14/15] scripts: environment: Add --container option.
  2015-10-26  0:35                   ` Thompson, David
@ 2015-10-27 10:13                     ` Ludovic Courtès
  2015-10-31  1:25                       ` Thompson, David
  0 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-10-27 10:13 UTC (permalink / raw)
  To: Thompson, David; +Cc: guix-devel, David Thompson

Hello!

One thing I noticed is that ‘guix environment --container’ behaves
sub-optimally when ‘SHELL’ is set or set to the empty string:

--8<---------------cut here---------------start------------->8---
$ guix environment alta --pure --container

[...]

In execvp of /home/ludo/.guix-profile/bin/bash: No such file or directory
$ SHELL= guix environment alta --pure --container
In execvp of : No such file or directory
--8<---------------cut here---------------end--------------->8---

One has to explicitly ‘unset SHELL’ to sidestep the problem.  This may
be confusing to newcomers.

What about automatically mapping $SHELL in the container when it is set?


Also, ‘SHELL’ is overridden in the environment:

--8<---------------cut here---------------start------------->8---
$ echo $SHELL
/home/ludo/.guix-profile/bin/bash
$ guix environment alta --container --expose=$SHELL
bash-4.3# echo $SHELL
/bin/sh
# ls -l /proc/2/exe
lrwxrwxrwx 1 0 0 0 Oct 27 10:11 /proc/2/exe -> /home/ludo/.guix-profile/bin/bash
bash-4.3# ls -l /home/ludo/.guix-profile/bin/bash
-r-xr-xr-x 2 65534 65534 917320 Jan  1  1970 /home/ludo/.guix-profile/bin/bash
--8<---------------cut here---------------end--------------->8---

I’m not sure if ‘SHELL’ should be added to ‘%precious-variables’.

Thoughts?

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 13/15] scripts: system: Add 'container' action.
  2015-10-27  0:24     ` Thompson, David
@ 2015-10-27 17:41       ` Ludovic Courtès
  2015-10-30 17:28         ` Thompson, David
  0 siblings, 1 reply; 65+ messages in thread
From: Ludovic Courtès @ 2015-10-27 17:41 UTC (permalink / raw)
  To: Thompson, David; +Cc: guix-devel, David Thompson

"Thompson, David" <dthompson2@worcester.edu> skribis:

> From 5dde31ef51502726a2915cc4faba81f4fadb851c Mon Sep 17 00:00:00 2001
> From: David Thompson <davet@gnu.org>
> Date: Mon, 8 Jun 2015 09:04:38 -0400
> Subject: [PATCH] scripts: system: Add 'container' action.
>
> * guix/scripts/system.scm (show-help): Display 'container' action.
>   (system-derivation-for-action, guix-system): Add 'container' case.
>   (perform-action): Skip GRUB config generation when building a container.
> * doc/guix.texi (Invoking guix system): Document it.

[...]

> +              ;; A range of 65536 uid/gids is used to cover 16 bits worth of
> +              ;; users and groups, which is sufficient for most cases.

Should be enough for everyone.  ;-)

>    (display (_ "\
> +  container         build a Linux container that shares the host's store\n"))

I’d remove “Linux” here (after all, we use libc’s interface, which
hopefully will be implemented for the Hurd eventually.)

OK with this change, thank you!

Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 15/15] scripts: Add 'container' subcommand.
  2015-10-27  0:31     ` Thompson, David
@ 2015-10-27 17:46       ` Ludovic Courtès
  0 siblings, 0 replies; 65+ messages in thread
From: Ludovic Courtès @ 2015-10-27 17:46 UTC (permalink / raw)
  To: Thompson, David; +Cc: guix-devel, David Thompson

"Thompson, David" <dthompson2@worcester.edu> skribis:

> From f5312c2445d774c9355c947d3c748d064740246e Mon Sep 17 00:00:00 2001
> From: David Thompson <davet@gnu.org>
> Date: Wed, 1 Jul 2015 20:32:07 -0400
> Subject: [PATCH] scripts: Add 'container' subcommand.
>
> * guix/scripts/container.scm: New file.
> * guix/scripts/container/exec.scm: New file.
> * po/guix/POTFILES.in: Add them.
> * Makefile.am (MODULES): Add them.
> * doc/guix.texi (Invoking guix container): New section.

[...]

> +Note: This tool is experimental.  The interface is subject to radical
> +change in the future.

Rather:  

  @quotation Note
  As of version @value{VERSION}, this tool is experimental.  The ...
  @end quotation

The rest looks good to me.

There are no tests, but ‘container-excursion’ is already tested in
tests/containers.scm and exec.scm does little more than call it, so I
think it’s OK.

Thanks!

Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 13/15] scripts: system: Add 'container' action.
  2015-10-27 17:41       ` Ludovic Courtès
@ 2015-10-30 17:28         ` Thompson, David
  0 siblings, 0 replies; 65+ messages in thread
From: Thompson, David @ 2015-10-30 17:28 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

On Tue, Oct 27, 2015 at 1:41 PM, Ludovic Courtès <ludo@gnu.org> wrote:
> "Thompson, David" <dthompson2@worcester.edu> skribis:
>
>> From 5dde31ef51502726a2915cc4faba81f4fadb851c Mon Sep 17 00:00:00 2001
>> From: David Thompson <davet@gnu.org>
>> Date: Mon, 8 Jun 2015 09:04:38 -0400
>> Subject: [PATCH] scripts: system: Add 'container' action.
>>
>> * guix/scripts/system.scm (show-help): Display 'container' action.
>>   (system-derivation-for-action, guix-system): Add 'container' case.
>>   (perform-action): Skip GRUB config generation when building a container.
>> * doc/guix.texi (Invoking guix system): Document it.
>
> [...]
>
>> +              ;; A range of 65536 uid/gids is used to cover 16 bits worth of
>> +              ;; users and groups, which is sufficient for most cases.
>
> Should be enough for everyone.  ;-)

Hehe.  I need to do more research on this.  User/group mapping is
still pretty confusing to me.

>>    (display (_ "\
>> +  container         build a Linux container that shares the host's store\n"))
>
> I’d remove “Linux” here (after all, we use libc’s interface, which
> hopefully will be implemented for the Hurd eventually.)

Fixed and pushed.  Thanks!

- Dave

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 14/15] scripts: environment: Add --container option.
  2015-10-27 10:13                     ` Ludovic Courtès
@ 2015-10-31  1:25                       ` Thompson, David
  2015-10-31 10:28                         ` Ludovic Courtès
  0 siblings, 1 reply; 65+ messages in thread
From: Thompson, David @ 2015-10-31  1:25 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: guix-devel, David Thompson

Hello, sorry for the delay.

On Tue, Oct 27, 2015 at 6:13 AM, Ludovic Courtès <ludo@gnu.org> wrote:
> Hello!
>
> One thing I noticed is that ‘guix environment --container’ behaves
> sub-optimally when ‘SHELL’ is set or set to the empty string:
>
> --8<---------------cut here---------------start------------->8---
> $ guix environment alta --pure --container
>
> [...]
>
> In execvp of /home/ludo/.guix-profile/bin/bash: No such file or directory
> $ SHELL= guix environment alta --pure --container
> In execvp of : No such file or directory
> --8<---------------cut here---------------end--------------->8---
>
> One has to explicitly ‘unset SHELL’ to sidestep the problem.  This may
> be confusing to newcomers.

Yes, I know about this, but I'm not sure of a good solution.

> What about automatically mapping $SHELL in the container when it is set?

The issue is that the default command to evaluate is $SHELL or
"/bin/sh."  You can be almost certain that $SHELL is not going to be
available in the container.  What to do?  Check if the command is
'equal?' to (list (getenv "SHELL")) and make it '("/bin/sh") instead?

> Also, ‘SHELL’ is overridden in the environment:
>
> --8<---------------cut here---------------start------------->8---
> $ echo $SHELL
> /home/ludo/.guix-profile/bin/bash
> $ guix environment alta --container --expose=$SHELL
> bash-4.3# echo $SHELL
> /bin/sh
> # ls -l /proc/2/exe
> lrwxrwxrwx 1 0 0 0 Oct 27 10:11 /proc/2/exe -> /home/ludo/.guix-profile/bin/bash
> bash-4.3# ls -l /home/ludo/.guix-profile/bin/bash
> -r-xr-xr-x 2 65534 65534 917320 Jan  1  1970 /home/ludo/.guix-profile/bin/bash
> --8<---------------cut here---------------end--------------->8---
>
> I’m not sure if ‘SHELL’ should be added to ‘%precious-variables’.

I don't think so, because of the issue mentioned above.  I'm thinking
that the default shell should remain the Bash we mount at /bin/sh.

Open to, and looking for, ideas to improve things.  Let me know what
you think of all this.

- Dave

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: [PATCH 14/15] scripts: environment: Add --container option.
  2015-10-31  1:25                       ` Thompson, David
@ 2015-10-31 10:28                         ` Ludovic Courtès
  0 siblings, 0 replies; 65+ messages in thread
From: Ludovic Courtès @ 2015-10-31 10:28 UTC (permalink / raw)
  To: Thompson, David; +Cc: guix-devel, David Thompson

"Thompson, David" <dthompson2@worcester.edu> skribis:

> Hello, sorry for the delay.
>
> On Tue, Oct 27, 2015 at 6:13 AM, Ludovic Courtès <ludo@gnu.org> wrote:

[...]

>> What about automatically mapping $SHELL in the container when it is set?
>
> The issue is that the default command to evaluate is $SHELL or
> "/bin/sh."  You can be almost certain that $SHELL is not going to be
> available in the container.  What to do?  Check if the command is
> 'equal?' to (list (getenv "SHELL")) and make it '("/bin/sh") instead?

What I meant above is to to the equivalent --expose=$SHELL by default
when ‘SHELL’ is set.  Anything wrong with that?

If we did that, we could honor $SHELL even for --container (it’s already
honored in the other case.)

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 65+ messages in thread

end of thread, other threads:[~2015-10-31 10:28 UTC | newest]

Thread overview: 65+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-06 13:16 [PATCH 01/15] build: syscalls: Add additional mount flags David Thompson
2015-07-06 13:16 ` [PATCH 02/15] build: syscalls: Add unmount flags David Thompson
2015-07-07 14:50   ` Ludovic Courtès
2015-07-07 22:44     ` Thompson, David
2015-07-06 13:16 ` [PATCH 03/15] build: syscalls: Add mkdtemp! David Thompson
2015-07-07 13:15   ` Ludovic Courtès
2015-07-07 22:52     ` Thompson, David
2015-07-06 13:16 ` [PATCH 04/15] utils: Add call-with-temporary-directory David Thompson
2015-07-07 13:15   ` Ludovic Courtès
2015-07-07 22:54     ` Thompson, David
2015-07-06 13:16 ` [PATCH 05/15] build: syscalls: Add clone syscall wrapper David Thompson
2015-07-07 13:23   ` Ludovic Courtès
2015-07-08  0:28     ` Thompson, David
2015-07-11 10:18       ` Ludovic Courtès
2015-07-06 13:16 ` [PATCH 06/15] build: syscalls: Add setns " David Thompson
2015-07-07 13:28   ` Ludovic Courtès
2015-07-08  0:57     ` Thompson, David
2015-07-06 13:16 ` [PATCH 07/15] build: syscalls: Add pivot-root David Thompson
2015-07-07 13:35   ` Ludovic Courtès
2015-07-08  1:18     ` Thompson, David
2015-07-08 12:47       ` Ludovic Courtès
2015-07-06 13:16 ` [PATCH 08/15] gnu: build: Add Linux container module David Thompson
2015-07-07 13:51   ` Ludovic Courtès
2015-07-08 12:38     ` Thompson, David
2015-07-08 21:57       ` Ludovic Courtès
2015-07-09 12:56         ` Thompson, David
2015-07-06 13:16 ` [PATCH 09/15] gnu: system: Move <file-system-mapping> into (gnu system file-systems) David Thompson
2015-07-07 13:51   ` Ludovic Courtès
2015-07-08  1:21     ` Thompson, David
2015-07-06 13:16 ` [PATCH 10/15] gnu: system: Move file-system->spec to " David Thompson
2015-07-07 13:51   ` Ludovic Courtès
2015-07-08  1:22     ` Thompson, David
2015-07-06 13:16 ` [PATCH 11/15] gnu: system: Add Linux container module David Thompson
2015-07-07 13:55   ` Ludovic Courtès
2015-07-09 13:00     ` Thompson, David
2015-07-10 17:57       ` Ludovic Courtès
2015-07-06 13:16 ` [PATCH 12/15] gnu: system: Add Linux container file systems David Thompson
2015-07-07 13:56   ` Ludovic Courtès
2015-07-09 12:56     ` Thompson, David
2015-07-06 13:16 ` [PATCH 13/15] scripts: system: Add 'container' action David Thompson
2015-07-07 14:05   ` Ludovic Courtès
2015-10-27  0:24     ` Thompson, David
2015-10-27 17:41       ` Ludovic Courtès
2015-10-30 17:28         ` Thompson, David
2015-07-06 13:16 ` [PATCH 14/15] scripts: environment: Add --container option David Thompson
2015-07-07 14:35   ` Ludovic Courtès
2015-07-09 13:16     ` Thompson, David
2015-07-10 18:03       ` Ludovic Courtès
2015-09-05 23:45     ` Thompson, David
2015-09-11 12:39       ` Ludovic Courtès
2015-10-10 21:11         ` Thompson, David
2015-10-11 19:34           ` Ludovic Courtès
2015-10-17 10:05             ` Ludovic Courtès
2015-10-22  1:23               ` Thompson, David
2015-10-25 21:38                 ` Ludovic Courtès
2015-10-26  0:35                   ` Thompson, David
2015-10-27 10:13                     ` Ludovic Courtès
2015-10-31  1:25                       ` Thompson, David
2015-10-31 10:28                         ` Ludovic Courtès
2015-07-06 13:16 ` [PATCH 15/15] scripts: Add 'container' subcommand David Thompson
2015-07-07 14:50   ` Ludovic Courtès
2015-10-27  0:31     ` Thompson, David
2015-10-27 17:46       ` Ludovic Courtès
2015-07-07 13:14 ` [PATCH 01/15] build: syscalls: Add additional mount flags Ludovic Courtès
2015-07-07 22:42   ` Thompson, David

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).