kalloc_init();
/**
- * @brief Allocate a space in kernel heap.This is NOT the same as kmalloc in Linux!
- * LunaixOS does NOT guarantee the continuity in physical pages.
+ * @brief Allocate an accessible memory region in kernel heap.
+ *
+ * @remarks
+ * This is NOT the same as kmalloc in Linux!
+ * LunaixOS does NOT guarantee the continuity in physical pages.
*
* @param size
* @return void*
/**
* @brief calloc for kernel heap. A wrapper for kmalloc
- *
* @param size
- * @return void*
+ * @return void*
*/
void*
kcalloc(size_t size);
/**
- * @brief free for kernel heap
+ * @brief Free the memory region allocated by kmalloc
*
* @param size
* @return void*