Im working on programming solutions to mutexes and semaphores. Most loops I've dealt with here are:
while(true)
{
/* do nothing*/
}
I came across some pseudocode for an algorithm where they have
while choosing[i] do skip ;
(choosing
is an array of booleans)
So is do skip
the same as "dont do anything"?
I'm going to implement the psuedocode in java.