stat.lisp 228 B

12345678910111213
  1. (in-package :hurd)
  2. (defcfun ("io_stat" %io-stat)
  3. err
  4. (node port)
  5. (stat stat-t))
  6. (defun io-stat (port)
  7. "Returns a stat object from a IO port."
  8. (let ((stat (make-stat)))
  9. (select-error (%io-stat port stat) stat)))