Skip to content

Instantly share code, notes, and snippets.

@JavaDeveloper
Created October 4, 2012 14:29
Show Gist options
  • Save JavaDeveloper/3833871 to your computer and use it in GitHub Desktop.
Save JavaDeveloper/3833871 to your computer and use it in GitHub Desktop.
...
pthread_mutex_lock(&lock1);
if(pthread_mutex_trylock(&lock2)){
pthread_mutex_unlock(&lock1);
}else{
count++;
pthread_mutex_unlock(&lock2);
}
pthread_mutex_unlock(&lock1);
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment