tracy/client/TracySystem.hpp

14 lines
167 B
C++
Raw Normal View History

2017-09-10 15:46:20 +00:00
#ifndef __TRACYSYSTEM_HPP__
#define __TRACYSYSTEM_HPP__
#include <thread>
namespace tracy
{
void SetThreadName( std::thread& thread, const char* name );
}
#endif