mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-11 07:19:20 +00:00
Kernel now boots on BIOS systems
This commit is contained in:
@ -17,11 +17,11 @@ class LockClass
|
||||
{
|
||||
struct SpinLockData
|
||||
{
|
||||
uint64_t LockData;
|
||||
const char *CurrentHolder;
|
||||
const char *AttemptingToGet;
|
||||
uint64_t Count;
|
||||
long Core;
|
||||
uint64_t LockData = 0x0;
|
||||
const char *CurrentHolder = "(nul)";
|
||||
const char *AttemptingToGet = "(nul)";
|
||||
uint64_t Count = 0;
|
||||
long Core = 0;
|
||||
};
|
||||
|
||||
private:
|
||||
|
Reference in New Issue
Block a user