Skip to content

Instantly share code, notes, and snippets.

@yremmet
Created December 9, 2014 12:44
Show Gist options
  • Save yremmet/126144b9473add9cc34b to your computer and use it in GitHub Desktop.
Save yremmet/126144b9473add9cc34b to your computer and use it in GitHub Desktop.
public class ParticleSystems implements ... {
private Semaphore particleModifiedSemaphore = new Semaphore(1);
[...]
public void refreshParticlePositions()
{
synchronized(particleModifiedSemaphore)
{
[...]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment