file-sync.lisp 456 B

123456789101112131415
  1. (in-package :hurd)
  2. (defcfun ("file_sync" %file-sync)
  3. err
  4. (file port)
  5. (wait :boolean)
  6. (omit-metadata :boolean))
  7. (defun file-sync (file &key (wait t) (omit-metadata nil))
  8. "Sync 'file'. Pass T to 'wait' if you want to wait. 'omit-metadata' tells if you also want to sync the file metadata (stat information, etc)."
  9. (declare (type fixnum file)
  10. (type boolean wait omit-metadata))
  11. (select-error (%file-sync file wait omit-metadata)))