Updated types

This commit is contained in:
Alex
2022-12-21 00:43:51 +02:00
parent 684b76a1ca
commit a677f3c159
62 changed files with 471 additions and 448 deletions

View File

@ -6,10 +6,10 @@ namespace Xalloc
{
struct SpinLockData
{
uint64_t LockData = 0x0;
uintptr_t LockData = 0x0;
const char *CurrentHolder = "(null)";
const char *AttemptingToGet = "(null)";
uint64_t Count = 0;
size_t Count = 0;
};
void DeadLock(SpinLockData Lock)