From e05aa2145b8d0000110b93fb371ba858cb2a02bc Mon Sep 17 00:00:00 2001 From: Amlal Date: Sat, 14 Sep 2024 20:11:35 +0200 Subject: IMP: Fixes and improvements on PEF Loader, User scheduler and BMP manager. - This covers the Memory Manager, User Scheduler Manager and Loader Manager. - These are mostly fixes and added features. - Such as a new symbol to get heap reserve. META: Run format command. Signed-off-by: Amlal --- dev/DDK/KernelAlloc.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'dev/DDK/KernelAlloc.c') diff --git a/dev/DDK/KernelAlloc.c b/dev/DDK/KernelAlloc.c index 7648712d..4fad4c0c 100644 --- a/dev/DDK/KernelAlloc.c +++ b/dev/DDK/KernelAlloc.c @@ -1,17 +1,17 @@ /* ------------------------------------------- - Copyright ZKA Technologies. + Copyright ZKA Technologies. - Purpose: DDK allocator. + Purpose: DDK allocator. ------------------------------------------- */ #include /** - \brief Allocates a new heap on the Kernel's side. - \param sz the size of the heap block. - \return the newly allocated pointer. + \brief Allocates a new heap on the Kernel's side. + \param sz the size of the heap block. + \return the newly allocated pointer. */ DK_EXTERN void* KernelAlloc(size_t sz) { @@ -24,8 +24,8 @@ DK_EXTERN void* KernelAlloc(size_t sz) } /** - \brief Frees a pointer from the heap. - \param ptr the pointer to free. + \brief Frees a pointer from the heap. + \param ptr the pointer to free. */ DK_EXTERN void KernelFree(void* ptr) { -- cgit v1.2.3