debugging - 使用用户模式转储确定 WinDbg 中线程的创建时间

标签 debugging windbg

如何通过用户模式转储确定在 WinDbg 中创建线程的时间。

最佳答案

!runaway 命令允许您显示自创建线程以来所耗时。来自文档:

!runaway [Flags] Parameters

Flags Specifies the kind of information to be displayed. Flags can be any combination of the following bits. The default value is 0x1.

Bit 0 (0x1) Causes the debugger to show the amount of user time consumed by each thread.

Bit 1 (0x2) Causes the debugger to show the amount of kernel time consumed by each thread.

Bit 2 (0x4)  Causes the debugger to show the amount of time that has elapsed since each thread was created.

关于debugging - 使用用户模式转储确定 WinDbg 中线程的创建时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11638131/

相关文章:

debugging - 在 Xcode 4.3.1 中使用 libc++ 时如何获得合理的变量显示?

windbg - lm命令中 'exported symbols'是什么意思

c++ - wchar_t 和 char 在 WinDbg 中的表示

c++ - 在 Windbg 中,当抛出特定的 C++ 异常时,我可以跳过中断吗?

debugging - 您最喜欢的 Grails 调试技巧是什么?

android - Kotlin调试无法在Visual Studio代码中启动

debugging - GDB 源路径

eclipse - 在 Eclipse 中调试已编译的 Groovy 脚本

c - 如何在 GCC 中编译 C 程序以在 WinDbg 中启用调试?

python - 在 PyKD 中获取可执行文件的模块