mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12:00
Take advantage of WIN10 Thread Name API
This commit is contained in:
parent
3aa15c8a23
commit
f031cd9b42
2 changed files with 13 additions and 0 deletions
|
@ -15,6 +15,11 @@
|
||||||
#include <Psapi.h>
|
#include <Psapi.h>
|
||||||
#include <process.h>
|
#include <process.h>
|
||||||
#include <sysinfoapi.h>
|
#include <sysinfoapi.h>
|
||||||
|
|
||||||
|
#include "util/dyn_lib.hpp"
|
||||||
|
|
||||||
|
DYNAMIC_IMPORT_RENAME("Kernel32.dll", SetThreadDescriptionImport, "SetThreadDescription", HRESULT(HANDLE hThread, PCWSTR lpThreadDescription));
|
||||||
|
|
||||||
#else
|
#else
|
||||||
#ifndef _GNU_SOURCE
|
#ifndef _GNU_SOURCE
|
||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
|
@ -2074,6 +2079,13 @@ void thread_base::initialize(void (*error_cb)())
|
||||||
|
|
||||||
void thread_base::set_name(std::string name)
|
void thread_base::set_name(std::string name)
|
||||||
{
|
{
|
||||||
|
#ifdef _WIN32
|
||||||
|
if (SetThreadDescriptionImport)
|
||||||
|
{
|
||||||
|
SetThreadDescriptionImport(GetCurrentThread(), utf8_to_wchar(name).c_str());
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
struct THREADNAME_INFO
|
struct THREADNAME_INFO
|
||||||
{
|
{
|
||||||
|
|
|
@ -110,3 +110,4 @@ namespace utils
|
||||||
}
|
}
|
||||||
|
|
||||||
#define DYNAMIC_IMPORT(lib, name, ...) inline constinit utils::dynamic_import<__VA_ARGS__> name(lib, #name);
|
#define DYNAMIC_IMPORT(lib, name, ...) inline constinit utils::dynamic_import<__VA_ARGS__> name(lib, #name);
|
||||||
|
#define DYNAMIC_IMPORT_RENAME(lib, declare_name, lib_func_name, ...) inline constinit utils::dynamic_import<__VA_ARGS__> declare_name(lib, lib_func_name);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue