Skip to content

Instantly share code, notes, and snippets.

@ashkrit
Created January 16, 2014 15:39
Show Gist options
  • Save ashkrit/8456993 to your computer and use it in GitHub Desktop.
Save ashkrit/8456993 to your computer and use it in GitHub Desktop.
while(true)
{
e = clqQueue.poll();
if(e==null)
{
// Sleep and then try again
}
else
{
process(e)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment