I can't understand the following statement
The Hotspot VM now implements Thread.yield() using the Windows SwitchToThread() API call. This call makes the current thread give up its current timeslice, but not its entire quantum.
given at http://www.javamex.com/tutorials/threads/yield.shtml
I understand that after a thread yields, other threads get a chance to execute. The original thread finishes its time slice and goes back to the queue. What's quantum here ?