mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 22:44:34 +00:00
Add TRACY_NO_EXIT macro.
This commit is contained in:
parent
51013dc0e6
commit
9c4316879c
@ -38,7 +38,9 @@ It should be noted that tracy needs to calibrate its internal timers at each run
|
|||||||
|
|
||||||
Copy files from `tracy/client` and `tracy/common` to your project. Add `tracy/TracyClient.cpp` to source files list. That's all. Tracy is now integrated into your application.
|
Copy files from `tracy/client` and `tracy/common` to your project. Add `tracy/TracyClient.cpp` to source files list. That's all. Tracy is now integrated into your application.
|
||||||
|
|
||||||
In the default configuration tracy is disabled. To enable it, add a TRACY\_ENABLE define.
|
In the default configuration tracy is disabled. To enable it, add a `TRACY_ENABLE` define.
|
||||||
|
|
||||||
|
If you want to profile a short-lived application, add a `TRACY_NO_EXIT` define. In this configuration tracy will not exit until an incoming connection is made, even if the application has already finished.
|
||||||
|
|
||||||
#### Marking zones
|
#### Marking zones
|
||||||
|
|
||||||
|
@ -184,7 +184,9 @@ void Profiler::Worker()
|
|||||||
{
|
{
|
||||||
for(;;)
|
for(;;)
|
||||||
{
|
{
|
||||||
|
#ifndef TRACY_NO_EXIT
|
||||||
if( ShouldExit() ) return;
|
if( ShouldExit() ) return;
|
||||||
|
#endif
|
||||||
m_sock = listen.Accept();
|
m_sock = listen.Accept();
|
||||||
if( m_sock ) break;
|
if( m_sock ) break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user