Implemented memory tracker

This commit is contained in:
Alex
2022-12-11 14:34:24 +02:00
parent 16bcb896fa
commit ab7f20d5f5
6 changed files with 85 additions and 4 deletions

View File

@ -7,8 +7,8 @@ namespace Xalloc
struct SpinLockData
{
uint64_t LockData = 0x0;
const char *CurrentHolder = "(nul)";
const char *AttemptingToGet = "(nul)";
const char *CurrentHolder = "(null)";
const char *AttemptingToGet = "(null)";
uint64_t Count = 0;
};