mirror of
https://github.com/vcmi/vcmi.git
synced 2025-06-02 23:07:36 +02:00
96 lines
2.3 KiB
C++
96 lines
2.3 KiB
C++
/*
|
|
* CThreadHelper.cpp, part of VCMI engine
|
|
*
|
|
* Authors: listed in file AUTHORS in main folder
|
|
*
|
|
* License: GNU General Public License v2.0 or later
|
|
* Full text of license available in license.txt file, in main folder
|
|
*
|
|
*/
|
|
#include "StdInc.h"
|
|
#include "CThreadHelper.h"
|
|
|
|
#ifdef VCMI_WINDOWS
|
|
#include <windows.h>
|
|
#elif defined(VCMI_HAIKU)
|
|
#include <OS.h>
|
|
#elif !defined(VCMI_APPLE) && !defined(VCMI_FREEBSD) && \
|
|
!defined(VCMI_HURD) && !defined(VCMI_OPENBSD)
|
|
#include <sys/prctl.h>
|
|
#endif
|
|
|
|
#include <tbb/task_arena.h>
|
|
#include <boost/lexical_cast.hpp>
|
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
static thread_local std::string threadNameForLogging;
|
|
|
|
std::string getThreadName()
|
|
{
|
|
if (!threadNameForLogging.empty())
|
|
return threadNameForLogging;
|
|
|
|
int tbbIndex = tbb::this_task_arena::current_thread_index();
|
|
|
|
if (tbbIndex < 0)
|
|
return boost::lexical_cast<std::string>(std::this_thread::get_id());
|
|
else
|
|
return "TBB worker " + boost::lexical_cast<std::string>(tbbIndex);
|
|
}
|
|
|
|
void setThreadNameLoggingOnly(const std::string &name)
|
|
{
|
|
threadNameForLogging = name;
|
|
}
|
|
|
|
void setThreadName(const std::string &name)
|
|
{
|
|
threadNameForLogging = name;
|
|
|
|
#ifdef VCMI_WINDOWS
|
|
#ifndef __GNUC__
|
|
//follows http://msdn.microsoft.com/en-us/library/xcb2z8hs.aspx
|
|
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.c_str();
|
|
info.dwThreadID = -1;
|
|
info.dwFlags = 0;
|
|
|
|
|
|
__try
|
|
{
|
|
RaiseException( MS_VC_EXCEPTION, 0, sizeof(info)/sizeof(ULONG_PTR), (ULONG_PTR*)&info );
|
|
}
|
|
__except(EXCEPTION_EXECUTE_HANDLER)
|
|
{
|
|
}
|
|
#else
|
|
//not supported
|
|
#endif
|
|
|
|
#elif defined(VCMI_APPLE)
|
|
pthread_setname_np(name.c_str());
|
|
#elif defined(VCMI_FREEBSD)
|
|
pthread_setname_np(pthread_self(), name.c_str());
|
|
#elif defined(VCMI_HAIKU)
|
|
rename_thread(find_thread(NULL), name.c_str());
|
|
#elif defined(VCMI_UNIX)
|
|
prctl(PR_SET_NAME, name.c_str(), 0, 0, 0);
|
|
#else
|
|
#error "Failed to find method to set thread name on this system. Please provide one (or disable this line if you just want code to compile)"
|
|
#endif
|
|
}
|
|
|
|
VCMI_LIB_NAMESPACE_END
|