From 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d Mon Sep 17 00:00:00 2001 From: Jef Date: Tue, 24 Sep 2024 14:54:57 +0200 Subject: Initial community commit --- Src/nu/threadname.h | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 Src/nu/threadname.h (limited to 'Src/nu/threadname.h') diff --git a/Src/nu/threadname.h b/Src/nu/threadname.h new file mode 100644 index 00000000..d89b5bea --- /dev/null +++ b/Src/nu/threadname.h @@ -0,0 +1,36 @@ +#ifndef NULLSOFT_UTILITY_THREADNAME_H +#define NULLSOFT_UTILITY_THREADNAME_H + +#ifdef _DEBUG +#include + +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; + +__inline void SetThreadName(DWORD dwThreadID, const char *szThreadName) +{ + THREADNAME_INFO info; + info.dwType = 0x1000; + info.szName = szThreadName; + info.dwThreadID = dwThreadID; + info.dwFlags = 0; + + __try + { + RaiseException( 0x406D1388, 0, sizeof(info) / sizeof(DWORD), (const ULONG_PTR *)&info ); + } + __except(EXCEPTION_CONTINUE_EXECUTION) + {} +} + +#else +#define SetThreadName(x,y) +#endif + +#endif -- cgit