tracy/common/TracySystem.hpp

17 lines
257 B
C++
Raw Normal View History

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