Archives > House of Random
Press Ctrl+V
Pacman Syu:
http://sourceforge.net/projects/elementaryos/files/unstable/elementaryos-beta1-amd64.20121114.iso/download
Mojo:
http://www.imdb.com/name/nm0891786/
Keith:
http://i49.tinypic.com/2w2fz3o.png
Mojo:
quesadilla
Mojo:
public class Semaphore
{
protected int value;
public Semaphore()
{
value = 0;
}
public Semaphore(int initial)
{
value = (initial>=0) ? initial : 0;
}
public synchronized void P() throws
InterruptedException
{
while (value==0)
{
wait();
}
value--;
}
public synchronized void V()
{
value++;
notify();
}
}