From b95b1fc42d371b08aa82fea8e92aa04b2ef5631f Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Wed, 21 Aug 2024 23:07:43 +0200 Subject: Kernel+DLL: See below. + Document LPC functions and reworked err_bug_check function to return false when everything is OK. + Added native APIs to SCI as well (threading, loader...) + Update ReadMe(s) of the other DLLs. Signed-off-by: Amlal El Mahrouss --- dev/ZKA/KernelKit/LPC.hxx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'dev/ZKA/KernelKit') diff --git a/dev/ZKA/KernelKit/LPC.hxx b/dev/ZKA/KernelKit/LPC.hxx index fec1d637..6553f45c 100644 --- a/dev/ZKA/KernelKit/LPC.hxx +++ b/dev/ZKA/KernelKit/LPC.hxx @@ -51,6 +51,11 @@ namespace Kernel inline constexpr HError kErrorInvalidCreds = 61; inline constexpr HError kErrorUnimplemented = 0; - Void err_bug_check_raise(void) noexcept; + /// @brief Reports a bug to system check. + Void err_bug_check_raise(void) noexcept; + + /// @brief Does a system wide bug check. + /// @param void no params. + /// @return if error-free: false, otherwise true. Boolean err_bug_check(void) noexcept; } // namespace Kernel -- cgit v1.2.3