我正在尝试将ClrMD附加到一个进程中:
private static void Main()
{
var pid = Process.GetCurrentProcess().Id;
WriteLine($"PID: {pid}");
using (var dataTarget = DataTarget.AttachToProcess(pid, 1000))
{
WriteLine($"ClrMD attached");
}
}
但是,我遇到以下异常:
PID: 7416
Unhandled Exception: Microsoft.Diagnostics.Runtime.ClrDiagnosticsException: Could not attach to pid 1CF8, HRESULT: 0x80070057
at Microsoft.Diagnostics.Runtime.DbgEngDataReader..ctor(Int32 pid, AttachFlag flags, UInt32 msecTimeout)
at Microsoft.Diagnostics.Runtime.DataTarget.AttachToProcess(Int32 pid, UInt32 msecTimeout, AttachFlag attachFlag)
at Microsoft.Diagnostics.Runtime.DataTarget.AttachToProcess(Int32 pid, UInt32 msecTimeout)
at BanksySan.Scratch.Console.Program.Main(String[] args)
我可以以被动模式附加,但不能以入侵或非入侵模式附加。
答案 0 :(得分:1)
您可以使用DataTarget.CreateSnapshotAndAttach
。
此方法创建该过程的快照并从中创建DataTarget
。
示例:
var processId = Process.GetCurrentProcess().Id;
using (var dataTarget = DataTarget.CreateSnapshotAndAttach(processId))
{
}
答案 1 :(得分:0)
Invasive
标志允许此API的使用者通过正常的IDebug函数调用来控制目标进程。此过程将暂停(在附加期间)以获取数据并控制目标进程
在NonInvasive
调试程序附加中,此过程将暂停(在附加期间),并且能够获取数据,但调用者无法控制目标进程。当已经有一个附加到该进程的调试器时,这很有用。
执行Passive
附加意味着没有调试器实际附加到目标进程。该过程不会暂停,因此快速更改数据(例如GC堆或调用堆栈的内容)的查询将非常不一致,除非用户通过其他方式暂停该过程。附加ICorDebug(托管调试器)时非常有用,因为您无法使用ICorDebug进行非侵入式附加。