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

Track server memory usage.

This commit is contained in:
Bartosz Taudul
2017-09-17 01:22:46 +02:00
parent ab033188d8
commit 447f042c9a
5 changed files with 37 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
#include "TracyMemory.hpp"
namespace tracy
{
std::atomic<size_t> memUsage = 0;
}