如何获取当前C#程序所有线程的调用栈信息 ?

咨询区

  • Daniel Sperry

请问如何获取 .NET 程序当前所有线程的调用栈信息?我知道在 java 中只需调用 java.lang.Thread.getAllStackTraces() 方法即可。

回答区

  • Will Calderwood

在 .NET 中并不容易实现,但可以使用诊断库 ClrMD ,可以在 nuget 上下载,它可以获取到当前进程的所有线程栈信息的快照,当然还可以获取 线程名 等各种附加信息,太强大了,参考如下代码:

using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using Microsoft.Diagnostics.Runtime;namespace CSharpUtils.wrc.utils.debugging
{public static class StackTraceAnalysis{public static string GetAllStackTraces(){var result = new StringBuilder();using (var target = DataTarget.CreateSnapshotAndAttach(Process.GetCurrentProcess().Id)){var runtime = target.ClrVersions.First().CreateRuntime();// We can't get the thread name from the ClrThead objects, so we'll look for// Thread instances on the heap and get the names from those.    var threadNameLookup = new Dictionary<int, string>();foreach (var obj in runtime.Heap.EnumerateObjects()){if (!(obj.Type is null) && obj.Type.Name == "System.Threading.Thread"){var threadId = obj.ReadField<int>("m_ManagedThreadId");var threadName = obj.ReadStringField("m_Name");threadNameLookup[threadId] = threadName;}}foreach (var thread in runtime.Threads){threadNameLookup.TryGetValue(thread.ManagedThreadId, out string threadName);result.AppendLine($"ManagedThreadId: {thread.ManagedThreadId}, Name: {threadName}, OSThreadId: {thread.OSThreadId}, Thread: IsAlive: {thread.IsAlive}, IsBackground: {thread.IsBackground}");foreach (var clrStackFrame in thread.EnumerateStackTrace())result.AppendLine($"{clrStackFrame.Method}");}}return result.ToString();}}
}

点评区

其实是这样的,如何想自动化获取当前的进程中所有线程的调用栈,用 ClrMD 即可,如果是为了对程序进行分析诊断,可以借助 windbg,再使用 sos 中的 ~*e !clrstack 命令即可,比如下面这样:

0:000> ~*e !clrstack 
OS Thread Id: 0x4110 (0)
Child SP       IP Call Site
0019f3e4 77a2166c [InlinedCallFrame: 0019f3e4] 
0019f3e0 79b49b71 DomainNeutralILStubClass.IL_STUB_PInvoke(Microsoft.Win32.SafeHandles.SafeFileHandle, Byte*, Int32, Int32 ByRef, IntPtr)
0019f3e4 7a27b275 [InlinedCallFrame: 0019f3e4] Microsoft.Win32.Win32Native.ReadFile(Microsoft.Win32.SafeHandles.SafeFileHandle, Byte*, Int32, Int32 ByRef, IntPtr)
0019f448 7a27b275 System.IO.__ConsoleStream.ReadFileNative(Microsoft.Win32.SafeHandles.SafeFileHandle, Byte[], Int32, Int32, Boolean, Boolean, Int32 ByRef)
0019f47c 7a27b17b System.IO.__ConsoleStream.Read(Byte[], Int32, Int32)
0019f49c 79b2e6a3 System.IO.StreamReader.ReadBuffer()
0019f4ac 79b2eb5b System.IO.StreamReader.ReadLine()
0019f4c8 7a3c3786 System.IO.TextReader+SyncTextReader.ReadLine()
0019f4d8 7a221845 System.Console.ReadLine()
0019f4e0 022f0983 *** WARNING: Unable to verify checksum for D:\net5\ConsoleApp1\ConsoleApp1\bin\Debug\ConsoleApp1.exe
ConsoleApp1.Program.Main(System.String[]) [D:\net5\ConsoleApp1\ConsoleApp1\Program.cs @ 25]
0019f67c 78e1f036 [GCFrame: 0019f67c] 
OS Thread Id: 0x11ac (24)
Child SP       IP Call Site
06c4f214 77a21bdc [HelperMethodFrame_1OBJ: 06c4f214] System.Threading.WaitHandle.WaitMultiple(System.Threading.WaitHandle[], Int32, Boolean, Boolean)
06c4f328 79ae8a86 System.Threading.WaitHandle.WaitAny(System.Threading.WaitHandle[], Int32, Boolean)
06c4f34c 7ace3f24 *** WARNING: Unable to verify checksum for C:\Windows\assembly\NativeImages_v4.0.30319_32\System\258d4259dd4377d917679ad4b058966e\System.ni.dll
System.Net.TimerThread.ThreadProc()
06c4f3a8 79a62e01 System.Threading.ThreadHelper.ThreadStart_Context(System.Object)
06c4f3b4 79a88604 System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
06c4f420 79a88537 System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
06c4f434 79a884f4 System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
06c4f44c 79a62d5b System.Threading.ThreadHelper.ThreadStart()
06c4f630 78e1f036 [GCFrame: 06c4f630] 
06c4f774 78e1f036 [DebuggerU2MCatchHandlerFrame: 06c4f774] 
OS Thread Id: 0x2fdc (25)
Child SP       IP Call Site
0700f114 755be695 [InlinedCallFrame: 0700f114] 
0700f110 7ad6aa01 DomainBoundILStubClass.IL_STUB_PInvoke(System.Net.SSPIHandle ByRef, System.Net.SecurityBufferDescriptor, UInt32, UInt32*)
0700f114 7ad530f4 [InlinedCallFrame: 0700f114] System.Net.UnsafeNclNativeMethods+NativeNTSSPI.DecryptMessage(System.Net.SSPIHandle ByRef, System.Net.SecurityBufferDescriptor, UInt32, UInt32*)
0700f154 7ad530f4 System.Net.SSPISecureChannelType.DecryptMessage(System.Net.SafeDeleteContext, System.Net.SecurityBufferDescriptor, UInt32)
0700f194 7ad51a1a System.Net.SSPIWrapper.EncryptDecryptHelper(OP, System.Net.SSPIInterface, System.Net.SafeDeleteContext, System.Net.SecurityBuffer[], UInt32)
0700f1fc 7ad52fe2 System.Net.Security.SecureChannel.Decrypt(Byte[], Int32 ByRef, Int32 ByRef)
0700f21c 7ad52e07 System.Net.Security._SslStream.ProcessFrameBody(Int32, Byte[], Int32, Int32, System.Net.AsyncProtocolRequest)
0700f248 7ad52d6b System.Net.Security._SslStream.ReadFrameCallback(System.Net.AsyncProtocolRequest)
0700f274 7ad4e576 System.Net.AsyncProtocolRequest.CompleteRequest(Int32)
0700f280 7ad4e537 System.Net.FixedSizeReader.CheckCompletionBeforeNextRead(Int32)
0700f28c 7ad4e4c6 System.Net.FixedSizeReader.ReadCallback(System.IAsyncResult)
0700f2b4 7ad14cf6 System.Net.LazyAsyncResult.Complete(IntPtr)
0700f2e8 7ad49d15 System.Net.ContextAwareResult.CompleteCallback(System.Object)
0700f2ec 79a88604 System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
0700f358 79a88537 System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
0700f36c 79a884f4 System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
0700f384 7ad4856d System.Net.ContextAwareResult.Complete(IntPtr)
0700f39c 7ad14c71 System.Net.LazyAsyncResult.ProtectedInvokeCallback(System.Object, IntPtr)
0700f3c4 7ad48378 System.Net.Sockets.BaseOverlappedAsyncResult.CompletionPortCallback(UInt32, UInt32, System.Threading.NativeOverlapped*)
0700f3f8 79aea3dd System.Threading._IOCompletionCallback.PerformIOCompletionCallback(UInt32, UInt32, System.Threading.NativeOverlapped*)
0700f4f4 78e1f036 [GCFrame: 0700f4f4] 
0700f604 78e1f036 [DebuggerU2MCatchHandlerFrame: 0700f604] 
OS Thread Id: 0x4214 (26)
Child SP       IP Call Site
GetFrameContext failed: 1
00000000 00000000 0:000> !tp
CPU utilization: 13%
Worker Thread: Total: 13 Running: 0 Idle: 13 MaxLimit: 2047 MinLimit: 12
Work Request in Queue: 0
--------------------------------------
Number of Timers: 1
--------------------------------------
Completion Port Thread:Total: 16 Free: 6 MaxFree: 24 CurrentLimit: 16 MaxLimit: 1000 MinLimit: 12

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/289758.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

JS

为什么80%的码农都做不了架构师&#xff1f;>>> function getQueryString(name) {var reg new RegExp("(^|&)" name "([^&]*)(&|$)"),r window.location.search.substr(1).match(reg);if(r ! null) {return unescape(r[2]); }r…

织梦php远程连接数据库,用PHP连接Oracle for NT 远程数据库

用PHP连接Oracle for NT 远程数据库发布时间&#xff1a;2016-06-17 来源&#xff1a; 点击:次我以前用php连接远程oracle8.0.5 for NT 企业版,用ODBC,oracle接口均不行。急煞我也&#xff01;寻寻觅觅&#xff0c;终于找到了连接的正确方法&#xff0c;我这里用OCI接口&#x…

ssh公钥免密码登录

2019独角兽企业重金招聘Python工程师标准>>> ssh 无密码登录要使用公钥与私钥。linux下可以用用ssh-keygen生成公钥/私钥对&#xff0c;下面我以CentOS为例。 有机器A(192.168.1.155)&#xff0c;B(192.168.1.181)。现想A通过ssh免密码登录到B。 首先以root账户登陆…

java之Synchronized(锁住对象和锁住代码)

1、问题 Synchronized我们一般都知道是锁&#xff0c;但是我们怎么区分是锁对象还是锁代码呢&#xff1f; 2、测试Demo package leetcode.chenyu.test;public class Synchronized {class Test {public synchronized void testFirst() {print("testFirst");}public…

Spring4Shell的漏洞原理分析

Spring框架最新的PoC这两天出来的一个RCE漏洞&#xff0c;但是有以下的条件限制才行&#xff1a;必须是jdk9及以上必须是部署在tomcat的应用是springmvc的或者webflux的应用具体的可以查看spring官方&#xff1a;https://spring.io/blog/2022/03/31/spring-framework-rce-early…

ArcGIS Python

1.遍历指定文件夹下的Grid格式的Raster import arcpy arcpy.env.workspace "D:\GLC_2000\China_gridv3\Grid" rasters arcpy.ListRasters("*", "GRID") for raster in rasters:print(raster) 结果&#xff1a; china_v3 china_v3_pro 2.遍…

php 点对点,浅析点对点(End-to-End)的场景文字识别

一、背景随着智能手机的广泛普及和移动互联网的迅速发展&#xff0c;通过手机等移动终端的摄像头获取、检索和分享资讯已经逐步成为一种生活方式。基于摄像头的(Camera-based)的应用更加强调对拍摄场景的理解。通常&#xff0c;在文字和其他物体并存的场景&#xff0c;用户往往…

spring boot aop 记录方法执行时间

了性能调优&#xff0c;需要先统计出来每个方法的执行时间&#xff0c;直接在方法前后log输出太麻烦&#xff0c;可以用AOP来加入时间统计 添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-ao…

linux工具:ssh---未完

ssh server_ip 或者 ssh usernameserver_ip 或者 ssh usernameserver_name , 再按提示输入密码. _____________________________ Can login to remote boxBut I already have telnetCan login to remote box without passwordBut I don’t care input passowrd everytimeCan ex…

【ArcGIS遇上Python】Python实现Modis NDVI批量化月最大合成

「 刘一哥GIS」CSDN专业技术博文专栏目录索引https://geostorm.blog.csdn.net/article/details/113732454 最大合成法(MVC)可以在Envi中的Band Math中进行,式子是B1>B2,但是无法批量化;本文实现在ArcGIS中利用Python代码批量进行,如下: 用到的Modis NDVI数据是在MRT…

php 物理路径,网站物理路径查找思路

标签&#xff1a;网站物理路径查找思路一、思想核心找网站安装路径&#xff0c;即找Document Root 的位置&#xff0c;而Document Root最常见的地方就是 phpinfo.php 和httpd.conf中&#xff1b;路径查找方向&#xff0c;可以大致分为以下2个方向&#xff1a;(1) 找phpinfo(2) …

cad2016中选择全图字体怎么操作_打开CAD图纸字体丢失、重新选择怎么办?这样设置,一辈子用的到...

AutoCAD图纸本身就有着比较特殊的个性&#xff0c;难编辑难打开&#xff0c;时不时的还会来个乱码、字体缺失&#xff0c;甚至有的时候还提示我们进行字体的重新选择&#xff0c;应该怎么解决呢&#xff1f;虽然是个很经常遇见的问题&#xff0c;很多的小伙伴还是不知道如何解决…

Android studio之导入project出现SDK location not found. Define location with sdk.dir in the local.proper

1、问题 到入项目提示下面信息 SDK location not found. Define location with sdk.dir in the local.properties file or with an ANDROID_HOME environment variable. 2、分析 很明显没有找到sdk location&#xff0c;Define location with sdk.dir in the local.properti…

MassTransit - .NET Core 的分布式应用程序框架

简介MassTransit 是一个免费的、开源的.NET 分布式应用程序框架。MassTransit 使创建应用程序和服务变得容易&#xff0c;这些应用程序和服务利用基于消息的松散耦合异步通信来实现更高的可用性、可靠性和可扩展性特点•易于使用和理解的 API&#xff0c;让您专注于解决业务问题…

CoffeeScript 1.9发布,引入对生成器的支持

CoffeeScript 1.9最终引入了期待已久的生成器&#xff08;generator&#xff09;&#xff0c;这将会防止开发人员陷入回调函数的陷阱&#xff0c;并帮助他们编写异步代码。\简单说&#xff0c;生成器是这样一类函数&#xff0c;你可以中途从中退出&#xff0c;后面再进来&#…

新型互联网交换中心促进互联网产业发展,助力信息经济创新

互联网作为由众多网络互联构成的“网中网”&#xff0c;网络间联通是互联网运行的重要环节之一。互联网发展之初&#xff0c;我国网络主要由几大基础电信运营商承建&#xff08;包括中国电信、中国移动、中国联通、中国铁通等&#xff09;&#xff0c;互联网用户、ICP&#xff…

mongo学习笔记(二):聚合,游标

一、聚合 <1> Count 1.db.person.count() 2.db.person.count({"age":20}) <2> Distinct db.person.distinct("age")//指定了谁&#xff0c;谁就不能重复 <3> Group key&#xff1a;这个就是分组的key&#xff0c;我们这里是对年龄分组。…

【ArcGIS遇上Python】ArcGIS Python实现Modis NDVI批量求年最大值

一年中的12个月份的月最大合成&#xff08;mvc&#xff09;数据放在“F:\\Vegetation Change\\Data\\GIMMS Data\\1MVC\\"&#xff0c;数据名称格式为mvc_198801,mvc_198802........mvc_198812。处理年份为1981-2006&#xff0c;代码为&#xff1a; import arcpy arcpy.C…

linux终端常用命令和windows终端常用命令对比

1、打开终端的快捷键 在linux平台 ctrl + Alt + T 在windows平台 菜单键+R 然后cmd 回车 2、过滤的命令linux的grep,windows的findstr 比如我们过滤android日志 在linux平台终端命令如下 adb logcat | grep *** 在windows平台终端命令如下 adb logcat | findstr *** 3、…

字节跳动offer流程多长时间_字节跳动-运营实习生-面经实录(已Offer??)

一、岗位【职位】运营实习生&#xff08;社群、用研&#xff09;【类型】日常实习【地点】上海【JD】-职位描述-参与公司教育类APP的核心用户运营工作&#xff1b;通过社群及内容的形式服务好核心用户群体&#xff0c;提高用户口碑&#xff1b;建立用户反馈体系&#xff0c;评估…