tags:

views:

34

answers:

3

I am trying to find out for how long the process was running before it crashed. Is it possible to find this information from the dump.

+2  A: 

Use the .time command. I know this works on live targets and I believe it works on dumps as well.

Matt Ellis
A: 

Thanks it works :). One following questuion on the outpout. The Process uptime is 20 mins but Kernel Time and USer Time total is only 15 seconds. What does this mean?

0:007> .time Debug session time: Wed Jul 7 00:17:44.000 2010 (UTC - 7:00) System Uptime: 0 days 5:21:58.007 Process Uptime: 0 days 0:20:46.000 Kernel time: 0 days 0:00:14.000 User time: 0 days 0:00:01.000

imasud
+1  A: 

Time spent sleeping isn't charged against thread times.

-scott

snoone