Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Significance of Sleep(0)

I used to see Sleep(0) in some part of my code where some infinite/long while loops are available. I was informed that it would make the time-slice available for other waiting processes. Is this true? Is there any significance for Sleep(0)?

like image 231
bdhar Avatar asked Sep 16 '10 14:09

bdhar


People also ask

What does sleep 0 do in python?

A thread can call Sleep(0) to relinquish its quantum, thereby reducing its share of the CPU. Note, however, that this does not guarantee that other threads will run.

What does thread sleep 0 do in Java?

Sleep(0) gives up CPU only to threads with equal or higher priorities.


2 Answers

According to MSDN's documentation for Sleep:

A value of zero causes the thread to relinquish the remainder of its time slice to any other thread that is ready to run. If there are no other threads ready to run, the function returns immediately, and the thread continues execution.

The important thing to realize is that yes, this gives other threads a chance to run, but if there are none ready to run, then your thread continues -- leaving the CPU usage at 100% since something will always be running. If your while loop is just spinning while waiting for some condition, you might want to consider using a synchronization primitive like an event to sleep until the condition is satisfied or sleep for a small amount of time to prevent maxing out the CPU.

like image 52
Nick Meyer Avatar answered Sep 21 '22 14:09

Nick Meyer


Yes, it gives other threads the chance to run.

A value of zero causes the thread to relinquish the remainder of its time slice to any other thread that is ready to run. If there are no other threads ready to run, the function returns immediately, and the thread continues execution.

Source

like image 30
Sjoerd Avatar answered Sep 23 '22 14:09

Sjoerd