Found in torvalds/linux-2.6.git -> kernel/mutex.c line 171
I have tried to find it on Google and such to no avail.
What does for (;;) instruct?<
for (;;)
It is an infinite loop which has no initial condition, no increment condition and no end condition. So it will iterate forever equivalent to while(1).