If I have an empty while loop in my code such as:
while(true);
It will drive the processor usage up to about 25%. However if I do the followin
Because the Sleep is basically telling the processor to switch contexts and let some other programs get more CPU time.