tracy/client/TracyProfiler.cpp

39 lines
621 B
C++
Raw Normal View History

2017-09-10 15:43:56 +00:00
#include <assert.h>
#include "TracyProfiler.hpp"
2017-09-10 15:46:20 +00:00
#include "TracySystem.hpp"
2017-09-10 15:43:56 +00:00
namespace tracy
{
static Profiler* s_instance = nullptr;
Profiler::Profiler()
: m_shutdown( false )
{
assert( !s_instance );
s_instance = this;
m_thread = std::thread( [this] { Worker(); } );
2017-09-10 15:46:20 +00:00
SetThreadName( m_thread, "Tracy Profiler" );
2017-09-10 15:43:56 +00:00
}
Profiler::~Profiler()
{
assert( s_instance );
s_instance = nullptr;
m_shutdown.store( true, std::memory_order_relaxed );
m_thread.join();
}
void Profiler::Worker()
{
for(;;)
{
if( m_shutdown.load( std::memory_order_relaxed ) ) return;
}
}
}