Skip to content

Instantly share code, notes, and snippets.

@zhjuncai
Created January 28, 2015 08:22
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 zhjuncai/fd1d65f1607f5d21a7e0 to your computer and use it in GitHub Desktop.
Save zhjuncai/fd1d65f1607f5d21a7e0 to your computer and use it in GitHub Desktop.
replacement of @synchronized objective-c in swift
/**
Runs a closure in a synchronized way.
:param: lock The object to be used to synchronize
:param: closure The closure that will be run in a synchronized way
*/
private func synchronized(lock: AnyObject, closure: @autoclosure () -> ()) {
objc_sync_enter(lock)
closure()
objc_sync_exit(lock)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment