Skip to content

Commit

Permalink
Revert "Remove the type constraint on a mailbox's mutex since it does…
Browse files Browse the repository at this point in the history
…n't work"

This reverts commit 773ccff.
  • Loading branch information
Jeremy Phelps committed Apr 8, 2019
1 parent 20781ef commit 574a200
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipc.lisp
Expand Up @@ -11,7 +11,7 @@
(define-condition semaphore-timeout (simple-error) ())

(defstruct simple-process-mailbox
(lock (make-lock))
(lock (make-lock) :type lock)
(blocker (make-semaphore) :type semaphore)
(unread-messages nil :type list)
(read-messages nil :type list))
Expand Down

0 comments on commit 574a200

Please sign in to comment.