Fixed non-windows compilation.

This commit is contained in:
hiker 2015-12-15 09:14:51 +11:00
parent 5c2f78b176
commit 430529ed58

View File

@ -39,39 +39,44 @@
#if defined(WIN32) && defined(DEBUG)
# define WIN32_LEAN_AND_MEAN
# include <Windows.h>
#endif
namespace VS
{
#if defined(WIN32) && defined(DEBUG)
# define WIN32_LEAN_AND_MEAN
# include <Windows.h>
/** This function sets the name of this thread in the VS debugger.
* \param name Name of the thread.
*/
static void setThreadName(const char *name)
{
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)
THREADNAME_INFO info;
info.dwType = 0x1000;
info.szName = name;
info.dwThreadID = -1;
info.dwFlags = 0;
__try
{
RaiseException( MS_VC_EXCEPTION, 0, sizeof(info)/sizeof(ULONG_PTR),
(ULONG_PTR*)&info );
}
__except(EXCEPTION_EXECUTE_HANDLER)
{
}
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)
THREADNAME_INFO info;
info.dwType = 0x1000;
info.szName = name;
info.dwThreadID = -1;
info.dwFlags = 0;
__try
{
RaiseException( MS_VC_EXCEPTION, 0, sizeof(info)/sizeof(ULONG_PTR),
(ULONG_PTR*)&info );
}
__except(EXCEPTION_EXECUTE_HANDLER)
{
}
} // setThreadName
#else
@ -79,5 +84,7 @@ namespace VS
{
}
#endif
} // namespace VS
#endif // HEADER_VS_HPP