From 03902f82edb1bac41631a3c2aeac866089ccaef8 Mon Sep 17 00:00:00 2001 From: Amlal Date: Tue, 17 Dec 2024 10:42:10 +0100 Subject: Kernel: Lots of fixes and improvements on the kernel's KWindow and Filesystem. --- dev/ZKAKit/src/UserProcessScheduler.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'dev/ZKAKit/src/UserProcessScheduler.cc') diff --git a/dev/ZKAKit/src/UserProcessScheduler.cc b/dev/ZKAKit/src/UserProcessScheduler.cc index 360625e4..637eb151 100644 --- a/dev/ZKAKit/src/UserProcessScheduler.cc +++ b/dev/ZKAKit/src/UserProcessScheduler.cc @@ -255,14 +255,14 @@ namespace Kernel { Bool success = false; - rtl_fini_dll(this, reinterpret_cast(this->PefDLLDelegate), &success); + rtl_fini_dylib(this, reinterpret_cast(this->DylibDelegate), &success); if (!success) { ke_stop(RUNTIME_CHECK_PROCESS); } - this->PefDLLDelegate = nullptr; + this->DylibDelegate = nullptr; } if (this->StackReserve) @@ -314,10 +314,10 @@ namespace Kernel // Create heap according to type of process-> if (process->Kind == UserProcess::kExectuableDLLKind) { - process->PefDLLDelegate = rtl_init_dll(process); - MUST_PASS(process->PefDLLDelegate); + process->DylibDelegate = rtl_init_dylib(process); + MUST_PASS(process->DylibDelegate); - kcout << "Create DLL Delegate for: " << process->Name << endl; + kcout << "Created Library Interface for process: " << process->Name << endl; } process->StackReserve = new UInt8[process->StackSize]; @@ -334,7 +334,7 @@ namespace Kernel return -kErrorProcessFault; } - kcout << "Create stack reserve for: " << process->Name << endl; + kcout << "Created Reserved Stack for process: " << process->Name << endl; ProcessID pid = mTeam.mProcessCount; -- cgit v1.2.3