Is Thread.Sleep(1) special?

前端 未结 1 1521
灰色年华
灰色年华 2020-12-29 01:33

Joe Duffy (author of Concurrent Programming on Windows) writes in this blog article that Thread.Sleep(1) is preferred over Thread.Sleep(0) because it will suspend for same a

相关标签:
1条回答
  • 2020-12-29 02:04

    You no longer need to use Sleep(1) instead of Sleep(0) because Microsoft changed the implementation of the Windows API Sleep().

    From the MSDN documentation for Sleep(), this is what happens now with Sleep(0):

    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.

    This is what used to happen in Windows XP:

    A value of zero causes the thread to relinquish the remainder of its time slice to any other thread of equal priority that is ready to run. If there are no other threads of equal priority ready to run, the function returns immediately, and the thread continues execution. This behavior changed starting with Windows Server 2003.

    Note the difference between "any other thread" and "any other thread of equal priority".

    The only reason that Joe Duffy suggests using Sleep(1) rather than Sleep(0) is because it is the shortest Sleep() value that will prevent the Sleep() from returning immediately if there are no other threads of equal priority ready to run, when running on Windows XP.

    You don't need to worry about this for OS versions after Windows Server 2003 because of the change in behaviour of Sleep().

    I draw your attention to this part of Joe's blog:

    And even though there's an explicit Sleep in there, issuing it doesn't allow the producer to be scheduled because it's at a lower priority.

    In XP, lower priority threads would be starved even if the main thread (of higher priority) did Sleep(0). Post-XP, this will no longer happen because Sleep(0) will allow the lower priority threads to run.

    0 讨论(0)
提交回复
热议问题