msg-option.lisp 362 B

123456789101112131415161718192021
  1. (in-package :mach)
  2. ;;
  3. ;; This file defines the mach_msg_option_t foreign type.
  4. ;;
  5. (defbitfield msg-option
  6. (:msg-option-none 0)
  7. (:send-msg #x01)
  8. (:rcv-msg #x02)
  9. (:send-timeout #x010)
  10. (:send-notify #x020)
  11. (:send-interrupt #x040)
  12. (:send-cancel #x080)
  13. (:rcv-timeout #x0100)
  14. (:rcv-notify #x0200)
  15. (:rcv-interrupt #x0400)
  16. (:rcv-large #x0800))