Skip to content

Instantly share code, notes, and snippets.

@nikodemus
Created August 16, 2011 13:10
Show Gist options
  • Save nikodemus/1149038 to your computer and use it in GitHub Desktop.
Save nikodemus/1149038 to your computer and use it in GitHub Desktop.
CONDITION-WAIT gotcha
(with-lock (*lock*)
(unwind-protect
;; Calls CONDITION-WAIT on the lock
(foo)
;; If FOO unwinds, the lock it might not be held here!
(bar)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment