diff options
| author | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-10-08 10:18:53 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-10-08 10:18:53 +0200 |
| commit | 61eb25f10c521860692a56286b4c40c445c617cb (patch) | |
| tree | 07f0e86865f563d1559685dfb6d085f05726f126 /dev/zka/src | |
| parent | 1c67d9655979b48a71fd3a9ba087142ed1bb28ea (diff) | |
IMP: Rename newoskrnl.exe to minkrnl.exe, which stands for minimal kernel (it's final name)
Diffstat (limited to 'dev/zka/src')
| -rw-r--r-- | dev/zka/src/IDLLObject.cxx | 2 | ||||
| -rw-r--r-- | dev/zka/src/IPEFDLLObject.cxx | 2 | ||||
| -rw-r--r-- | dev/zka/src/PEFCodeMgr.cxx | 5 | ||||
| -rw-r--r-- | dev/zka/src/Semaphore.cxx | 2 | ||||
| -rw-r--r-- | dev/zka/src/Stop.cxx | 6 | ||||
| -rw-r--r-- | dev/zka/src/ThreadLocalStorage.cxx | 3 |
6 files changed, 11 insertions, 9 deletions
diff --git a/dev/zka/src/IDLLObject.cxx b/dev/zka/src/IDLLObject.cxx index b6b6a348..5220f928 100644 --- a/dev/zka/src/IDLLObject.cxx +++ b/dev/zka/src/IDLLObject.cxx @@ -1,7 +1,7 @@ /* * ======================================================== * - * newoskrnl + * minkrnl * Copyright ZKA Technologies., all rights reserved. * * ======================================================== diff --git a/dev/zka/src/IPEFDLLObject.cxx b/dev/zka/src/IPEFDLLObject.cxx index 22645dde..e5f91d9a 100644 --- a/dev/zka/src/IPEFDLLObject.cxx +++ b/dev/zka/src/IPEFDLLObject.cxx @@ -1,7 +1,7 @@ /* * ======================================================== * - * newoskrnl + * minkrnl * Copyright ZKA Technologies., all rights reserved. * * ======================================================== diff --git a/dev/zka/src/PEFCodeMgr.cxx b/dev/zka/src/PEFCodeMgr.cxx index 47643078..dcc0d4db 100644 --- a/dev/zka/src/PEFCodeMgr.cxx +++ b/dev/zka/src/PEFCodeMgr.cxx @@ -89,7 +89,8 @@ namespace Kernel if (fCachedBlob) mm_delete_heap(fCachedBlob); - kcout << "CodeMgrPEF: Warning: Executable format error!\r"; + kcout << "PEFLoader: Warning: Executable format error!\r"; + fCachedBlob = nullptr; } @@ -169,6 +170,8 @@ namespace Kernel rt_copy_memory((VoidPtr)((Char*)blob + sizeof(PEFCommandHeader)), blobRet, container_header->Size); mm_delete_heap(blob); + kcout << "PEFLoader: INFO: Load stub: " << container_header->Name << "!\r"; + return blobRet; } } diff --git a/dev/zka/src/Semaphore.cxx b/dev/zka/src/Semaphore.cxx index 9160228b..88e3b16b 100644 --- a/dev/zka/src/Semaphore.cxx +++ b/dev/zka/src/Semaphore.cxx @@ -47,7 +47,7 @@ namespace Kernel return this->Lock(process); } - /// @brief Wait with process, either wait for process being invalid, or not being run. + /// @brief Wait with process, either wait for it to be being invalid, or not being run. Void Semaphore::WaitForProcess() noexcept { while (fLockingProcess) diff --git a/dev/zka/src/Stop.cxx b/dev/zka/src/Stop.cxx index 6c252206..dd464659 100644 --- a/dev/zka/src/Stop.cxx +++ b/dev/zka/src/Stop.cxx @@ -16,7 +16,7 @@ #include <modules/FB/FB.hxx> #include <modules/FB/Text.hxx> -#define cWebsiteMacro "https://help.el-mahrouss-logic.com/" +#define cWebsiteMacro "https://help.zka-software.com/" /* Each error code is attributed with an ID, which will prompt a string onto the * screen. Wait for debugger... */ @@ -32,7 +32,7 @@ namespace Kernel auto start_y = 10; auto x = 10; - CGDrawString("newoskrnl.exe Stopped working properly so it had to stop.", start_y, x, panicTxt); + CGDrawString("minkrnl.exe stopped working properly so it had to stop.", start_y, x, panicTxt); start_y += 10; // simply offset from previous string and then write the website. @@ -48,7 +48,7 @@ namespace Kernel switch (id) { case RUNTIME_CHECK_PROCESS: { - CGDrawString("0x00000008 No more processes to run, this is because that ZKA ran out of processes.", start_y, x, panicTxt); + CGDrawString("0x00000008 Scheduler error.", start_y, x, panicTxt); RecoveryFactory::Recover(); break; } diff --git a/dev/zka/src/ThreadLocalStorage.cxx b/dev/zka/src/ThreadLocalStorage.cxx index d3514c8d..be773eab 100644 --- a/dev/zka/src/ThreadLocalStorage.cxx +++ b/dev/zka/src/ThreadLocalStorage.cxx @@ -1,7 +1,7 @@ /* * ======================================================== * - * newoskrnl + * minkrnl * Copyright ZKA Technologies., all rights reserved. * * ======================================================== @@ -12,7 +12,6 @@ #include <KernelKit/UserProcessScheduler.hxx> #include <KernelKit/ThreadLocalStorage.hxx> - /***********************************************************************************/ /// @bugs: 0 /// @file ThreadLocalStorage.cxx |
