diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-21 13:39:23 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-21 13:39:55 +0100 |
| commit | 051e2cfb8df4f2fc1ef711ca7351e7018b4c6e1c (patch) | |
| tree | bd220c371991418bdb8c0a7de2fc9547c3009708 /Public/Kits/System.Core/InitRuntime.cxx | |
| parent | 333fed96b7ccd3ee4f5f097445408dde34d330db (diff) | |
unstable: secret: Start work on AHCI driver, getting it to initialize
first.
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Public/Kits/System.Core/InitRuntime.cxx')
| -rw-r--r-- | Public/Kits/System.Core/InitRuntime.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Public/Kits/System.Core/InitRuntime.cxx b/Public/Kits/System.Core/InitRuntime.cxx index 01eb2c1f..8d5596ca 100644 --- a/Public/Kits/System.Core/InitRuntime.cxx +++ b/Public/Kits/System.Core/InitRuntime.cxx @@ -4,9 +4,11 @@ #include <System.Core/Heap.hxx> -/// @brief Inits the C runtime +/// @brief Inits the process runtime /// @return if it was succesful or not. DWORD HcInitRuntime(VOID) { - kInstanceObject = HcGetProcessObject(); + kInstanceObject = HcGetInstanceObject(); + CA_MUST_PASS(kInstanceObject); + return 0; }
\ No newline at end of file |
