Skip to content

Instantly share code, notes, and snippets.

@comfly
Created April 18, 2016 12:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save comfly/616c1861443569459775b0feef2f8e4c to your computer and use it in GitHub Desktop.
Save comfly/616c1861443569459775b0feef2f8e4c to your computer and use it in GitHub Desktop.
func synchronized(object: AnyObject, @noescape closure: () -> Void) {
objc_sync_enter(object)
closure()
objc_sync_exit(object)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment