【发布时间】:2014-10-20 18:57:20
【问题描述】:
我正在尝试测量线程中花费的时间以用于进度报告,但我从 GetThreadTimes 系统调用中得到了非常奇怪的结果。给定以下程序(在 VS 2013 中编译,针对 .NET 4.5):
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Threading;
namespace ThreadTimingTest
{
class Program
{
static Stopwatch _wallClockTimer;
static System.Timers.Timer _timer = new System.Timers.Timer();
private static Thread _thread;
private static IntPtr _threadHandle;
static void Main(string[] args)
{
_timer = new System.Timers.Timer();
_timer.Elapsed += (s, e) =>
{
System.Runtime.InteropServices.ComTypes.FILETIME start, end, rawKernelTime, rawUserTime;
GetThreadTimes(_threadHandle, out start, out end, out rawKernelTime, out rawUserTime);
//ref: http://stackoverflow.com/a/6083846
ulong uLow = (ulong)rawKernelTime.dwLowDateTime;
ulong uHigh = (uint)rawKernelTime.dwHighDateTime;
uHigh = uHigh << 32;
long kernelTime = (long)(uHigh | uLow);
uLow = (ulong)rawUserTime.dwLowDateTime;
uHigh = (uint)rawUserTime.dwHighDateTime;
uHigh = uHigh << 32;
long userTime = (long)(uHigh | uLow);
Debug.WriteLine("Kernel time: " + kernelTime);
Debug.WriteLine("User time: " + userTime);
Debug.WriteLine("Combined raw execution time: " + (kernelTime + userTime));
long elapsedMilliseconds = (kernelTime + userTime) / 10000; //convert to milliseconds: raw timing unit is 100 nanoseconds
Debug.WriteLine("Elapsed thread time: " + elapsedMilliseconds + " milliseconds");
Debug.WriteLine("Wall Clock Time: " + _wallClockTimer.ElapsedMilliseconds + " milliseconds");
};
_timer.Interval = 1000;
_wallClockTimer = new Stopwatch();
Debug.WriteLine("Starting...");
RunTest();
Debug.WriteLine("Ended.");
}
public static void RunTest()
{
_thread =
new Thread
(
() =>
{
_threadHandle = GetCurrentThread();
Stopwatch sw = Stopwatch.StartNew();
while (sw.ElapsedMilliseconds < 3000)
{
int i = 1 + 2;
} //do busy-work for 3 seconds
sw.Stop();
}
);
_timer.Start();
_thread.Start();a
_wallClockTimer.Start();
_thread.Join();
}
[DllImport("kernel32.dll", SetLastError = true)]
static extern bool GetThreadTimes(IntPtr hThread,
out System.Runtime.InteropServices.ComTypes.FILETIME lpCreationTime, out System.Runtime.InteropServices.ComTypes.FILETIME lpExitTime,
out System.Runtime.InteropServices.ComTypes.FILETIME lpKernelTime, out System.Runtime.InteropServices.ComTypes.FILETIME lpUserTime);
[DllImport("kernel32.dll")]
private static extern IntPtr GetCurrentThread();
}
}
我得到以下输出:
Starting...
Kernel time: 0
User time: 0
Combined raw execution time: 0
Elapsed thread time: 0 milliseconds
Wall Clock Time: 1036 milliseconds
Kernel time: 0
User time: 0
Combined raw execution time: 0
Elapsed thread time: 0 milliseconds
Wall Clock Time: 2036 milliseconds
The thread '<No Name>' (0x191c) has exited with code 0 (0x0).
Ended.
我希望GetThreadTimes 报告线程时间不为零的值:为什么报告为零?
【问题讨论】:
-
Multiple managed threads can run on the same OS thread。假设:.NET 运行时在完成其时间片之前中断了操作系统线程,因此不会记录其时间(参见this 文章)。当然,无论如何时间都不准确,因为您不是在测量在 托管 线程中花费的时间,而是在测量底层操作系统线程。
-
因为 GetCurrentThread() 不会返回您认为的结果。让您测量错误线程的时间。刚刚在this blog post 报道。
标签: c# multithreading concurrency timing