The following is a translation of an atomic wait in Java.
Here what is the need for while? Isn't if sufficient?
///<await (condition) statements; >
synchronized(obj)
{
while ( !condition)
{
obj.wait();
}
statements;
}