diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-05-22 10:31:06 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-05-22 10:31:06 +0200 |
| commit | 4dc25424ab8d3a3f466881a4405414c440b771eb (patch) | |
| tree | 262d0b418d7dd3c94812e94c6e7293dd11d45103 /Kernel | |
| parent | 0c211cca4d7a4d836f4cb685345e44f3f2814fd1 (diff) | |
master: Fix AppMain.cxx: replace CoreGraphics, with WindowServer.
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Kernel')
| -rw-r--r-- | Kernel/Sources/AppMain.cxx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Kernel/Sources/AppMain.cxx b/Kernel/Sources/AppMain.cxx index e9da459b..9ca224c3 100644 --- a/Kernel/Sources/AppMain.cxx +++ b/Kernel/Sources/AppMain.cxx @@ -184,7 +184,7 @@ namespace NewOS::Detail /// @return void no return value. STATIC NewOS::Void AppSystemLoader(NewOS::Void) { - NewOS::PEFLoader coreGraphicsShLib("/System/CoreGraphics"); + NewOS::PEFLoader coreGraphicsShLib("/System/WindowServer"); if (!coreGraphicsShLib.IsLoaded()) { @@ -221,8 +221,5 @@ EXTERN_C NewOS::Void AppMain(NewOS::Void) auto cLoaderName = "SystemLoader"; NewOS::execute_from_image(NewOS::Detail::AppSystemLoader, cLoaderName); - while (NewOS::ProcessScheduler::Shared().Leak().Run() > 0) - { - NewOS::kcout << "New OS: Shuting down...\r"; - } + while (NewOS::ProcessScheduler::Shared().Leak().Run() > 0) {} } |
