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
+14
View File
@@ -0,0 +1,14 @@
#ifndef __TRACYMEMORY_HPP__
#define __TRACYMEMORY_HPP__
#include <atomic>
#include <stdlib.h>
namespace tracy
{
extern std::atomic<size_t> memUsage;
}
#endif