1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

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
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