revoke.lisp 226 B

12345678910111213
  1. (in-package :hurd)
  2. (defcfun ("io_revoke" %io-revoke)
  3. err
  4. (file port))
  5. (defun io-revoke (file)
  6. "Revoke all ports refered to 'file', except this one."
  7. (declare (type fixnum file))
  8. (select-error (%io-revoke file)))