.NET Thread.Sleep() is randomly imprecise

前端 未结 7 1892
故里飘歌
故里飘歌 2021-01-20 01:34

In my .NET application I have to replay a series of sensor events. So I created a thread that fires these events (usually about every 1 - 4 millisecond). I implemented a loo

相关标签:
7条回答
  • 2021-01-20 01:59

    You're not the only one to point this out recently. Something must have changed since XP. Sleep() was then pretty reliable, and indeed accurate, over intervals where it's useful, eg. seconds or minutes. 4ms is totally outside of what is available via Sleep(), as others have pointed out.

    It seems that now, with later OS, some extra uncertainty has crept in somehow, though I haven't tested it myself.

    Over usefully long periods, you should raise the priority of the sleeping thread so it will get dispatched as soon as it is made ready by the expiry of the sleep interval.

    For 4ms, look at multimedia timers, as suggested by Science Fiction, (+1).

    0 讨论(0)
  • 2021-01-20 02:06

    Thread.Sleep() is not precise. The number you give it is the MINIMUM time to sleep, not the exact time to sleep. Further, Thread.Sleep also has a minimum granularity, which I think Is around 10ms IIRC.

    If you need more precise timing, then you probably want to use a timer instead. However, be aware that Windows and .NET in particular are not "Real Time", so they cannot give you pinpoint accuracy.

    For example, if the garbage collector kicks in, it may take longer to process timers.

    0 讨论(0)
  • 2021-01-20 02:08

    Windows isn't a real-time OS, so you won't get those kinds of guarantees. Basically, Thread.Sleep will sleep for at least milliseconds, but it could be more, especially for very small values.

    0 讨论(0)
  • 2021-01-20 02:11

    Windows is not a real time operating system.

    The scheduler may wait longer than the requested sleep duration to execute a thread, especially if another thread is still busy.

    Try use the Multimedia Timer if you want more reliability. There is a .NET wrapper here.

    0 讨论(0)
  • 2021-01-20 02:15

    Thread.Sleep really just calls win32 Sleep function, whose documentation details the inaccuracy.

    What Thread.Sleep really does is give up control for about the specified milliseconds. The Sleep function details that could be more or less. The rate at which the OS can give back control is determined by the system quantum, which is 10-15 milliseconds. So, in reality Thread.Sleep can only be accurate to the nearest quantum. But, as others have pointed out, if the CPU is under heavy load that, time will be longer. Plus, if your thread has a lower priority than all other threads, it may not get time.

    In terms of load, it's about load when the switch might occur. You're talking about a 1ms timeout (which is really about 15, as you've witnessed, due to the system quantum or timer accuracy) which means that the OS really only needs to be busy for 15-30 ms before it can be too busy to give back control to a thread until a future quanta. That's not a whole lot of time. If something of higher priority needs CPU in that 15-40ms, the higher-priority threads gets the time-slice, potentially starving the thread that gave up its control.

    What Thread.Sleep really means (for timeout values larger than 1) is that it's telling the OS that this thread is lower in priority than every other thread in the system for at least the timeout value, until the thread gets control back. Thread.Sleep is not a timing mechanism, it's a means of relinquishing control. They should really rename "Sleep" to "Yield".

    If you want to design something that periodically does something, use a timer. If you need to be really precise, use a multimedia timer.

    0 讨论(0)
  • 2021-01-20 02:16

    Thread.Sleep only guarantees that the thread will sleep for at least the specified interval. It does not give accuracy guarantees -- indeed it cannot do so, because it is the OS scheduler that decides when each blocked thread should be given CPU time.

    If threads could demand that they be run again in a specific point in time then preemptive multitasking would be impossible.

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