diff options
| author | Amlal <amlalelmahrouss@icloud.com> | 2024-12-17 10:42:10 +0100 |
|---|---|---|
| committer | Amlal <amlalelmahrouss@icloud.com> | 2024-12-17 10:42:10 +0100 |
| commit | 03902f82edb1bac41631a3c2aeac866089ccaef8 (patch) | |
| tree | 06ac75fdd12446915091a5307981459f048a9d5c /dev/ZKAKit/src/UserProcessScheduler.cc | |
| parent | 83cf6299a17d60ece650baa05069f657f783c911 (diff) | |
Kernel: Lots of fixes and improvements on the kernel's KWindow and Filesystem.
Diffstat (limited to 'dev/ZKAKit/src/UserProcessScheduler.cc')
| -rw-r--r-- | dev/ZKAKit/src/UserProcessScheduler.cc | 12 |
1 files changed, 6 insertions, 6 deletions
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<IPEFDLLObject*>(this->PefDLLDelegate), &success); + rtl_fini_dylib(this, reinterpret_cast<IPEFDLLObject*>(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; |
