Refactor KE subsystem
This commit is contained in:
@@ -9,26 +9,20 @@
|
||||
#include <xtos.hh>
|
||||
|
||||
|
||||
/* Kernel Library */
|
||||
namespace KE
|
||||
{
|
||||
|
||||
/* Kernel initialization block passed by boot loader */
|
||||
PKERNEL_INITIALIZATION_BLOCK BootInformation::InitializationBlock = {};
|
||||
PKERNEL_INITIALIZATION_BLOCK KE::BootInformation::InitializationBlock = {};
|
||||
|
||||
/* Kernel boot resources list */
|
||||
LIST_ENTRY SystemResources::ResourcesListHead;
|
||||
LIST_ENTRY KE::SystemResources::ResourcesListHead;
|
||||
|
||||
/* Kernel boot resources lock */
|
||||
KSPIN_LOCK SystemResources::ResourcesLock;
|
||||
KSPIN_LOCK KE::SystemResources::ResourcesLock;
|
||||
|
||||
/* Kernel initial process */
|
||||
EPROCESS KProcess::InitialProcess;
|
||||
EPROCESS KE::KProcess::InitialProcess;
|
||||
|
||||
/* Kernel initial thread */
|
||||
ETHREAD KThread::InitialThread = {};
|
||||
ETHREAD KE::KThread::InitialThread = {};
|
||||
|
||||
/* Kernel UBSAN active frame flag */
|
||||
BOOLEAN KUbsan::ActiveFrame = FALSE;
|
||||
|
||||
} /* namespace */
|
||||
BOOLEAN KE::KUbsan::ActiveFrame = FALSE;
|
||||
|
Reference in New Issue
Block a user