Skip to content

Instantly share code, notes, and snippets.

@YogevSitton-zz
Created April 20, 2017 14:26
Show Gist options
  • Save YogevSitton-zz/152761065e9a44e0aa36ea3cabcf93f5 to your computer and use it in GitHub Desktop.
Save YogevSitton-zz/152761065e9a44e0aa36ea3cabcf93f5 to your computer and use it in GitHub Desktop.
Beware of deadlocks with serial queues
let customSerialQueue = DispatchQueue(label: "com.yogevsitton.MyApp.myCustomSerialQueue")
customSerialQueue.sync {
// Synchronous code
customSerialQueue.sync {
// This code will never be executed and the app is now in deadlock
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment