Here is a quote from a textbook I'm reading at the moment:
"That is, whenever a thread needs to execute a loop with a lot of iterations, it is good practice to put a sleep() in each iteration - Event short sleep times, such as 5 milliseconds, can reduce the overall CPU usage of the application from 100% to > 1%"
It's a good practice, I believe, but; doesn't scheduler does exactly that - A bit of time to thread1; suspend thread1; A bit of time to thread2...etc. I can't grasp such drop rate, anyone willing to enlighten me?