Implement Kernel Shared Data management and initialization
All checks were successful
All checks were successful
This commit is contained in:
31
xtoskrnl/includes/ke/shdata.hh
Normal file
31
xtoskrnl/includes/ke/shdata.hh
Normal file
@@ -0,0 +1,31 @@
|
||||
/**
|
||||
* PROJECT: ExectOS
|
||||
* COPYRIGHT: See COPYING.md in the top level directory
|
||||
* FILE: xtoskrnl/includes/ke/shdata.hh
|
||||
* DESCRIPTION: Kernel Shared Data
|
||||
* DEVELOPERS: Aiken Harris <harraiken91@gmail.com>
|
||||
*/
|
||||
|
||||
#ifndef __XTOSKRNL_KE_SHDATA_HH
|
||||
#define __XTOSKRNL_KE_SHDATA_HH
|
||||
|
||||
#include <xtos.hh>
|
||||
|
||||
|
||||
/* Kernel Library */
|
||||
namespace KE
|
||||
{
|
||||
class SharedData
|
||||
{
|
||||
private:
|
||||
STATIC PKSHARED_DATA KernelSharedData;
|
||||
|
||||
public:
|
||||
STATIC XTAPI PKSHARED_DATA GetKernelSharedData(VOID);
|
||||
STATIC XTAPI LARGE_INTEGER GetSystemTime(VOID);
|
||||
STATIC XTAPI VOID InitializeKernelSharedData(VOID);
|
||||
STATIC XTAPI VOID SetSystemTime(IN LARGE_INTEGER Time);
|
||||
};
|
||||
}
|
||||
|
||||
#endif /* __XTOSKRNL_KE_SHDATA_HH */
|
||||
Reference in New Issue
Block a user