Timing mystery
OlafMeding
Posts: 6
Why would the performance profiler show 839 ms for line 1 and 1000 ms for line 6? The profiler is set to wall clock time.
I am using ANTS Performance Profiler 7.0 downloaded last week on Windows XP, Visual Studio 2010, and C# code.
1 int n = TestSleep(1000);
2 Debug.WriteLine(string.Format("n: {0}", n));
3}
4private int TestSleep(int ms)
5{
6 Thread.Sleep(ms);
7 return 123;
8}
Thank you for your help.
Olaf
[/url]
I am using ANTS Performance Profiler 7.0 downloaded last week on Windows XP, Visual Studio 2010, and C# code.
1 int n = TestSleep(1000);
2 Debug.WriteLine(string.Format("n: {0}", n));
3}
4private int TestSleep(int ms)
5{
6 Thread.Sleep(ms);
7 return 123;
8}
Thank you for your help.
Olaf
[/url]
Comments
1000.240 ms
&
1000.027
Feel free to send your results to us at support and we'll take a look.