Set worker thread name.

This commit is contained in:
Bartosz Taudul
2017-09-10 17:46:20 +02:00
parent a5d6039aea
commit 4a05da273f
3 changed files with 64 additions and 0 deletions

13
client/TracySystem.hpp Executable file
View File

@@ -0,0 +1,13 @@
#ifndef __TRACYSYSTEM_HPP__
#define __TRACYSYSTEM_HPP__
#include <thread>
namespace tracy
{
void SetThreadName( std::thread& thread, const char* name );
}
#endif