1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-07 13:40:36 +02:00

syscalls: 'statfs' explicitly binds 'statfs64'.

* guix/build/syscalls.scm (statfs): Explicitly bind "statfs64".
This commit is contained in:
Ludovic Courtès
2016-04-30 23:32:25 +02:00
committed by 宋文武
parent e19eb93b85
commit 07857052db

View File

@@ -515,7 +515,7 @@ string TMPL and return its file name. TMPL must end with 'XXXXXX'."
(spare1 int128))
(define statfs
(let ((proc (syscall->procedure int "statfs" '(* *))))
(let ((proc (syscall->procedure int "statfs64" '(* *))))
(lambda (file)
"Return a <file-system> data structure describing the file system
mounted at FILE."
@@ -523,7 +523,7 @@ mounted at FILE."
(ret (proc (string->pointer file) (bytevector->pointer stat)))
(err (errno)))
(if (zero? ret)
(read-statfs stat 0)
(read-statfs stat)
(throw 'system-error "statfs" "~A: ~A"
(list file (strerror err))
(list err)))))))