1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Add system tracing skeleton.

This commit is contained in:
Bartosz Taudul
2019-08-12 20:08:15 +02:00
parent 8aa0be39d5
commit fe0f1aea07
5 changed files with 69 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#include "TracySysTrace.hpp"
#ifdef TRACY_HAS_SYSTEM_TRACING
namespace tracy
{
bool SysTraceStart()
{
return true;
}
void SysTraceStop()
{
}
void SysTraceWorker( void* ptr )
{
}
}
#endif