summaryrefslogtreecommitdiffhomepage
path: root/dev/user
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-03-29 05:03:14 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-03-29 05:06:15 +0100
commitc4870d08fa4bfb2613bf22a0b7cf306b388f58a4 (patch)
treec8b5023a5ab4fe257f7687573812053c6e5273fb /dev/user
parenta8bd5ed975031d63eb448d2ed4f160cf7159c3bc (diff)
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 <amlal@nekernel.org>
Diffstat (limited to 'dev/user')
-rw-r--r--dev/user/SystemCalls.h8
1 files changed, 4 insertions, 4 deletions
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);