lock.lisp 190 B

12345678910111213
  1. (in-package :hurd-common)
  2. ;; This file describes all the lock flags
  3. ;; associated with file locking.
  4. (defbitfield lock-flags
  5. (:lock-sh 1)
  6. (:lock-ex 2)
  7. (:lock-un 8)
  8. (:lock-nb 4))