tracy/common/TracySystem.hpp
2017-09-13 01:32:11 +02:00

14 lines
167 B
C++
Executable File

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