Implemented SmartCriticalSection

This commit is contained in:
Alex
2022-10-21 03:49:12 +03:00
parent 2f7b871aa0
commit 5d41d36bd8
9 changed files with 59 additions and 30 deletions

View File

@ -232,7 +232,7 @@ namespace Memory
class Physical
{
private:
NEWLOCK(MemoryLock);
NewLock(MemoryLock);
uint64_t TotalMemory = 0;
uint64_t FreeMemory = 0;
@ -358,7 +358,7 @@ namespace Memory
class Virtual
{
private:
NEWLOCK(MemoryLock);
NewLock(MemoryLock);
PageTable *Table = nullptr;
class PageMapIndexer