tracy/public/client
Bartosz Taudul 72ad40698b
Move initialization of callstack structs to a thread.
Initializing structures for callstack processing (building memory map of the
process, gathering kernel symbols, etc) takes some time, which in some cases
may be significant.

Callstack queries are now handled on a separate thread. In such setup it no
longer makes sense to block main thread execution with this lengthy init
process.

All the heavy initialization phase has been now moved to this separate
processing thread. Some initial callstack queries may now not produce
responses as promptly as before, but this is only because the main thread is
able to start working earlier.

Some parts of the initialization process may be critical to do in the main
thread, for example because the function responsible for gathering callstacks
must be loaded first. This is done still on the main thread, in a new function
InitCallstackCritical().
2022-08-16 13:55:46 +02:00
..
tracy_concurrentqueue.h Move all client headers and sources to public/ directory. 2022-07-17 15:47:38 +02:00
tracy_rpmalloc.cpp Compatibility fixes for rpmalloc. 2022-07-30 14:13:54 +02:00
tracy_rpmalloc.hpp Update rpmalloc to 1.4.4. 2022-07-30 13:29:57 +02:00
tracy_SPSCQueue.h Move all client headers and sources to public/ directory. 2022-07-17 15:47:38 +02:00
TracyAlloc.cpp Decouple rpmalloc usage from TRACY_ENABLE flag. 2022-08-08 19:40:16 +02:00
TracyArmCpuTable.hpp Move all client headers and sources to public/ directory. 2022-07-17 15:47:38 +02:00
TracyCallstack.cpp Move initialization of callstack structs to a thread. 2022-08-16 13:55:46 +02:00
TracyCallstack.h Move all client headers and sources to public/ directory. 2022-07-17 15:47:38 +02:00
TracyCallstack.hpp Move initialization of callstack structs to a thread. 2022-08-16 13:55:46 +02:00
TracyDebug.hpp Move all client headers and sources to public/ directory. 2022-07-17 15:47:38 +02:00
TracyDxt1.cpp Move all client headers and sources to public/ directory. 2022-07-17 15:47:38 +02:00
TracyDxt1.hpp Move all client headers and sources to public/ directory. 2022-07-17 15:47:38 +02:00
TracyFastVector.hpp Move all client headers and sources to public/ directory. 2022-07-17 15:47:38 +02:00
TracyLock.hpp Don't transfer lock release thread id. 2022-07-18 01:56:09 +02:00
TracyProfiler.cpp Move initialization of callstack structs to a thread. 2022-08-16 13:55:46 +02:00
TracyProfiler.hpp Allow setting plot color in the configuration message. 2022-07-24 13:32:21 +02:00
TracyRingBuffer.hpp Move all client headers and sources to public/ directory. 2022-07-17 15:47:38 +02:00
TracyScoped.hpp Move all client headers and sources to public/ directory. 2022-07-17 15:47:38 +02:00
TracyStringHelpers.hpp Do not duplicate code. 2022-07-20 01:06:12 +02:00
TracySysTime.cpp Move all client headers and sources to public/ directory. 2022-07-17 15:47:38 +02:00
TracySysTime.hpp Move all client headers and sources to public/ directory. 2022-07-17 15:47:38 +02:00
TracySysTrace.cpp Add support for Vsync capture on Linux. 2022-07-30 21:29:44 +02:00
TracySysTrace.hpp Move all client headers and sources to public/ directory. 2022-07-17 15:47:38 +02:00
TracyThread.hpp Fix call to rpmalloc_thread_finalize in manual lifetime use-case. 2022-07-30 14:33:39 +02:00