mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 14:44:34 +00:00
Force proper initialization order on gcc.
This commit is contained in:
parent
a6c5993401
commit
2c252226fc
@ -26,6 +26,12 @@
|
|||||||
# define DISABLE_LZ4
|
# define DISABLE_LZ4
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __GNUC__
|
||||||
|
#define init_order( val ) __attribute__ ((init_priority(val)))
|
||||||
|
#else
|
||||||
|
#define init_order(x)
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace tracy
|
namespace tracy
|
||||||
{
|
{
|
||||||
|
|
||||||
@ -48,13 +54,13 @@ static const char* GetProcessName()
|
|||||||
|
|
||||||
enum { QueuePrealloc = 256 * 1024 };
|
enum { QueuePrealloc = 256 * 1024 };
|
||||||
|
|
||||||
moodycamel::ConcurrentQueue<QueueItem> s_queue( QueueItemSize * QueuePrealloc );
|
moodycamel::ConcurrentQueue<QueueItem> init_order(101) s_queue( QueueItemSize * QueuePrealloc );
|
||||||
thread_local moodycamel::ProducerToken s_token( s_queue );
|
thread_local moodycamel::ProducerToken init_order(102) s_token( s_queue );
|
||||||
|
|
||||||
std::atomic<uint64_t> s_id( 0 );
|
std::atomic<uint64_t> s_id( 0 );
|
||||||
|
|
||||||
#ifndef TRACY_DISABLE
|
#ifndef TRACY_DISABLE
|
||||||
static Profiler s_profiler;
|
static Profiler init_order(103) s_profiler;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static Profiler* s_instance = nullptr;
|
static Profiler* s_instance = nullptr;
|
||||||
|
Loading…
Reference in New Issue
Block a user