file-statfs.lisp 306 B

123456789101112
  1. (in-package :hurd-translator)
  2. ;; Return filesystem status.
  3. (def-fs-interface :file-statfs ((file port)
  4. (statfs statfs-t))
  5. (with-lookup protid file
  6. (when (refresh-statfs *translator* (get-user protid))
  7. (statfs-copy statfs (get-statfs *translator*))
  8. t)))