mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
91 lines
2.1 KiB
C++
91 lines
2.1 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_APPLE) && !defined(VCMI_FREEBSD) && !defined(VCMI_HURD)
|
|
#include <sys/prctl.h>
|
|
#endif
|
|
|
|
CThreadHelper::CThreadHelper(std::vector<std::function<void()> > *Tasks, int Threads)
|
|
{
|
|
currentTask = 0; amount = Tasks->size();
|
|
tasks = Tasks;
|
|
threads = Threads;
|
|
}
|
|
void CThreadHelper::run()
|
|
{
|
|
boost::thread_group grupa;
|
|
std::vector<boost::thread *> thr;
|
|
for(int i=0;i<threads;i++)
|
|
thr.push_back(grupa.create_thread(std::bind(&CThreadHelper::processTasks,this)));
|
|
grupa.join_all();
|
|
|
|
for(auto thread : thr)
|
|
delete thread;
|
|
}
|
|
void CThreadHelper::processTasks()
|
|
{
|
|
while(true)
|
|
{
|
|
int pom;
|
|
{
|
|
boost::unique_lock<boost::mutex> lock(rtinm);
|
|
if((pom = currentTask) >= amount)
|
|
break;
|
|
else
|
|
++currentTask;
|
|
}
|
|
(*tasks)[pom]();
|
|
}
|
|
}
|
|
|
|
// set name for this thread.
|
|
// NOTE: on *nix string will be trimmed to 16 symbols
|
|
void setThreadName(const std::string &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(__linux__)
|
|
prctl(PR_SET_NAME, name.c_str(), 0, 0, 0);
|
|
#endif
|
|
}
|