From c4870d08fa4bfb2613bf22a0b7cf306b388f58a4 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 29 Mar 2025 05:03:14 +0100 Subject: ddk: refactor: reorganize kit into a standard kernel kit. sched: refactor: refactor scheduler file names, for future additions. xcoff: refactor: document and improve XCOFF for NeFS (regarding Ne's FW) codemgr: refactor: make a difference between kernel and user processes. refactor: document project overall. Signed-off-by: Amlal El Mahrouss --- dev/user/SystemCalls.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dev/user') diff --git a/dev/user/SystemCalls.h b/dev/user/SystemCalls.h index 2d14fa3c..4a211eef 100644 --- a/dev/user/SystemCalls.h +++ b/dev/user/SystemCalls.h @@ -28,19 +28,19 @@ typedef Ref SocketRef; /// @brief Dynamic Loader API. // ------------------------------------------------------------------------------------------ // -/// @brief Get function which is part of the DLL. +/// @brief Get function which is part of the Dylib. /// @param symbol the symbol to look for -/// @param dll_handle the DLL handle. +/// @param dll_handle the Dylib handle. /// @return the proc pointer. IMPORT_C Ref LdrGetDLLSymbolFromHandle(_Input const Char* symbol, _Input Ref dll_handle); -/// @brief Open DLL handle. +/// @brief Open Dylib handle. /// @param path /// @param drv /// @return IMPORT_C Ref LdrOpenDLLHandle(_Input const Char* path, _Input const Char* drive_letter); -/// @brief Close DLL handle +/// @brief Close Dylib handle /// @param dll_handle /// @return IMPORT_C UInt32 LdrCloseDLLHandle(_Input Ref* dll_handle); -- cgit v1.2.3