mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
14 lines
167 B
C++
14 lines
167 B
C++
|
#ifndef __TRACYSYSTEM_HPP__
|
||
|
#define __TRACYSYSTEM_HPP__
|
||
|
|
||
|
#include <thread>
|
||
|
|
||
|
namespace tracy
|
||
|
{
|
||
|
|
||
|
void SetThreadName( std::thread& thread, const char* name );
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|