What is the impact of Thread.Sleep(1) in C#? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T12:04:39Zhttp://stackoverflow.com/feeds/question/508208http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/508208/what-is-the-impact-of-thread-sleep1-in-c6What is the impact of Thread.Sleep(1) in C#?Justin Tanner2009-02-03T17:59:29Z2009-02-07T02:21:47Z
<p>In a windows form application what is the impact of calling <code>Thread.Sleep(1)</code> as illustrated in the following code:</p>
<pre><code>public Constructor()
{
Thread thread = new Thread(Task);
thread.IsBackground = true;
thread.Start();
}
private void Task()
{
while (true)
{
// do something
Thread.Sleep(1);
}
}
</code></pre>
<p>Will this thread hog all of the available CPU? </p>
<p>What profiling techniques can I use to measure this Thread's CPU usage ( other than task manager )?</p>
http://stackoverflow.com/questions/508208/what-is-the-impact-of-thread-sleep1-in-c/508215#50821517Answer by Frederick for What is the impact of Thread.Sleep(1) in C#?Frederick2009-02-03T18:01:32Z2009-02-03T18:11:24Z<p>No it won't hog the CPU, it will just pause your tread for <em>at least</em> that long. While your thread is paused, the operating system can schedule another, unrelated process to make use of the processor.</p>
http://stackoverflow.com/questions/508208/what-is-the-impact-of-thread-sleep1-in-c/508218#5082181Answer by DannySmurf for What is the impact of Thread.Sleep(1) in C#?DannySmurf2009-02-03T18:01:42Z2009-02-03T18:01:42Z<p>No, it won't hog all available CPU, because a sleeping thread will be switched out by the OS' scheduler when another thread has work to do.</p>
http://stackoverflow.com/questions/508208/what-is-the-impact-of-thread-sleep1-in-c/508219#5082191Answer by krosenvold for What is the impact of Thread.Sleep(1) in C#?krosenvold2009-02-03T18:01:52Z2009-02-03T20:56:50Z<p>No, it will not. You'll barely see it. Somewhere less than 1000 times a second this thread will wake up and do next to nothing before sleeping again.</p>
<p>Edit: </p>
<p>I had to check. Running on Java 1.5 , this test</p>
<pre><code>@Test
public void testSpeed() throws InterruptedException {
long currentTime = System.currentTimeMillis();
int i = 0;
while (i < 1000)
{
Thread.sleep(1);
i++;
}
System.out.println("Executed in " + (System.currentTimeMillis() - currentTime));
}
</code></pre>
<p>Ran at approximately 500 sleeps per second on my 3ghz machine. I suppose C# should be fairly much the same. I assume someone will report back with C# numbers for this intensely important real-world benchmark. There was no observable CPU usage, by the way.</p>
http://stackoverflow.com/questions/508208/what-is-the-impact-of-thread-sleep1-in-c/508343#5083437Answer by Bob Nadler for What is the impact of Thread.Sleep(1) in C#?Bob Nadler2009-02-03T18:35:29Z2009-02-03T18:35:29Z<p>As stated, your loop will not hog the CPU. </p>
<p><em>But beware</em>: Windows is <strong>not</strong> a real-time OS, so you will <strong>not</strong> get 1000 wakes per second from Thread.Sleep(1). If you haven't used <a href="http://msdn.microsoft.com/en-us/library/ms713413.aspx" rel="nofollow">timeBeginPeriod</a> to set your minimum resolution you'll wake about every 15 ms. Even after you've set the minimum resolution to 1 ms, you'll still only wake up every 3-4 ms.</p>
<p>In order to get millisecond level timer granularity you have to use the Win32 multimedia timer (<a href="http://www.codeproject.com/KB/miscctrl/lescsmultimediatimer.aspx" rel="nofollow">C# wrapper</a>).</p>
http://stackoverflow.com/questions/508208/what-is-the-impact-of-thread-sleep1-in-c/509637#5096370Answer by Andrei Rinea for What is the impact of Thread.Sleep(1) in C#?Andrei Rinea2009-02-04T00:36:44Z2009-02-04T00:36:44Z<p>A thread can at most hog one (logical) CPU at a time. And a 1ms sleep will not be hogging. Don't sweat it.</p>
http://stackoverflow.com/questions/508208/what-is-the-impact-of-thread-sleep1-in-c/509655#5096554Answer by Jorge Córdoba for What is the impact of Thread.Sleep(1) in C#?Jorge Córdoba2009-02-04T00:47:24Z2009-02-04T00:47:24Z<p>Thread.Sleep(1) as stated will not hog the CPU.</p>
<p>Here is what happens when a thread sleeps (more or less):</p>
<ul>
<li>Thread.Sleep is translated into a system call, which in turn triggers a trap (an interruption that allows the operating system to take control)</li>
<li>The operating system detects the call to sleep and marks your thread as blocked.</li>
<li>Internally the OS keeps a list of threads that need to be waken up and when it should happen.</li>
<li>Since the thread is no longer using the CPU the OS...</li>
<li>If the parent process has not used up all of its time slice the OS will schedule another thread of the process for execution.</li>
<li>Otherwise another process (or the idle process) will start executing.</li>
<li>When the time is due, your thread will be scheduled again for execution, that doesn't mean it will start executing automatically.</li>
</ul>
<p>On a final note, I don't exactly know what you are doing but it would seem you're trying to take the role of the scheduler, that is, sleeping to provide the CPU with time to do other things...</p>
<p>In a few cases (very few indeed) it might be all right, but mostly you should let the scheduler do its work, it probably <strong>knows more than you do</strong>, and <strong>can make the work better than you can do it</strong>.</p>
http://stackoverflow.com/questions/508208/what-is-the-impact-of-thread-sleep1-in-c/522681#5226811Answer by Justin Tanner for What is the impact of Thread.Sleep(1) in C#?Justin Tanner2009-02-06T23:39:15Z2009-02-07T02:21:47Z<p>As Bob Nadler mentioned <code>Thread.Sleep(1)</code> does not guarantee a sleep time of 1ms.</p>
<p>Here is an example using the Win32 multimedia timer to force a sleep of 1ms.</p>
<pre><code> [DllImport("winmm.dll")]
internal static extern uint timeBeginPeriod(uint period);
[DllImport("winmm.dll")]
internal static extern uint timeEndPeriod(uint period);
timeBeginPeriod(1);
while(true)
{
Thread.Sleep(1); // will sleep 1ms every time
}
timeEndPeriod(1);
</code></pre>
<p>Testing this in a C# GUI application, I found that the application used about 50% of my CPU.</p>
<p>For more discussion on this topic see the following forum thread:</p>
<p><a href="http://www.dotnet247.com/247reference/msgs/57/289291.aspx" rel="nofollow">http://www.dotnet247.com/247reference/msgs/57/289291.aspx</a></p>