码迷,mamicode.com
首页 > 编程语言 > 详细

Visual Studio调试器指南---多线程应用程序调试(三)

时间:2020-03-17 11:31:28      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:obj   try   ace   sharp   应用程序   write   两种方法   this   inf   

在本机代码中设置线程名称

在 Visual Studio 的任何版本中都可以使用线程命名功能。 当调试正在运行的进程时,线程命名有助于标识 "线程" 窗口中感兴趣的线程。 在通过故障转储检查并使用各种工具分析性能捕获时,具有 recognizably 命名的线程也会有所帮助。

设置线程名称的方法

可以通过两种方法来设置线程名称。 第一种方式是通过SetThreadDescription函数。 第二种方法是在 Visual Studio 调试器附加到进程时引发特定异常。 每种方法都有优点和注意事项。 从 Windows 10 版本1607或 Windows Server 2016 开始,支持使用 SetThreadDescription

值得注意的是,_这两_种方法可以一起使用(如果需要),因为它们的工作机制彼此独立。

使用 SetThreadDescription 设置线程名称

优点:

  • 在 Visual Studio 中进行调试时,线程名称是可见的,无论调试程序是否已在调用 SetThreadDescription 时附加到进程。
  • 在 Visual Studio 中加载故障转储后,线程名称将在执行事后调试时可见。
  • 使用其他工具(如WinDbg调试器和Windows 性能分析器性能分析器)时,也会显示线程名称。

注意:

  • 线程名称只在 Visual Studio 2017 版本15.6 及更高版本中可见。
  • 当事后调试故障转储文件时,只有在 Windows 10 版本1607、Windows Server 2016 或更高版本的 Windows 上创建了崩溃后,线程名称才可见。

示例:

C++
#include <windows.h>
#include <processthreadsapi.h>

int main()
{
    HRESULT r;
    r = SetThreadDescription(
        GetCurrentThread(),
        L"ThisIsMyThreadName!"
    );

    return 0;
}

通过引发异常来设置线程名称

在程序中设置线程名称的另一种方法是,通过引发专门配置的异常将所需的线程名称传达给 Visual Studio 调试器。

优点:

  • 适用于所有版本的 Visual Studio。

注意:

  • 仅在使用基于异常的方法时附加调试器时才起作用。
  • 使用此方法设置的线程名称将在转储或性能分析工具中不可用。

示例:

下面显示的 SetThreadName 函数演示了此基于异常的方法。 请注意,线程名称将自动复制到线程,以便 threadName 参数的内存可在 SetThreadName 调用完成后释放。

C++
//
// Usage: SetThreadName ((DWORD)-1, "MainThread");
//
#include <windows.h>
const DWORD MS_VC_EXCEPTION = 0x406D1388;
#pragma pack(push,8)
typedef struct tagTHREADNAME_INFO
{
    DWORD dwType; // Must be 0x1000.
    LPCSTR szName; // Pointer to name (in user addr space).
    DWORD dwThreadID; // Thread ID (-1=caller thread).
    DWORD dwFlags; // Reserved for future use, must be zero.
} THREADNAME_INFO;
#pragma pack(pop)
void SetThreadName(DWORD dwThreadID, const char* threadName) {
    THREADNAME_INFO info;
    info.dwType = 0x1000;
    info.szName = threadName;
    info.dwThreadID = dwThreadID;
    info.dwFlags = 0;
#pragma warning(push)
#pragma warning(disable: 6320 6322)
    __try{
        RaiseException(MS_VC_EXCEPTION, 0, sizeof(info) / sizeof(ULONG_PTR), (ULONG_PTR*)&info);
    }
    __except (EXCEPTION_EXECUTE_HANDLER){
    }
#pragma warning(pop)
}

在托管代码中设置线程名称

在 Visual Studio 的任何版本中都可以使用线程命名功能。 线程命名功能对跟踪“线程”窗口中的线程非常有用。

若要在托管代码中设置线程名称,请使用 Name 属性。

示例

C#
public class Needle
{
    // This method will be called when the thread is started.
    public void Baz()
    {
        Console.WriteLine("Needle Baz is running on another thread");
    }
}

public void Main()
{
    Console.WriteLine("Thread Simple Sample");
    Needle oNeedle = new Needle();
    // Create a Thread object.
    System.Threading.Thread oThread = new System.Threading.Thread(oNeedle.Baz);
    // Set the Thread name to "MyThread".
    oThread.Name = "MyThread";
    // Starting the thread invokes the ThreadStart delegate
    oThread.Start();
}
VB
Public Class Needle
    ‘ This method will be called when the thread is started.
    Sub Baz()
        Console.WriteLine("Needle Baz is running on another thread")
    End Sub
End Class

Sub Main()
    Console.WriteLine("Thread Simple Sample")
    Dim oNeedle As New Needle()
   ‘ Create a Thread object.
    Dim oThread As New System.Threading.Thread(AddressOf oNeedle.Baz)
    ‘ Set the Thread name to "MyThread".
    oThread.Name = "MyThread"
    ‘ Starting the thread invokes the ThreadStart delegate
    oThread.Start()
End Sub

 

Visual Studio调试器指南---多线程应用程序调试(三)

标签:obj   try   ace   sharp   应用程序   write   两种方法   this   inf   

原文地址:https://www.cnblogs.com/yilang/p/12492161.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!