1 #ifndef __LUNAIX_KALLOC_H
2 #define __LUNAIX_KALLOC_H
10 * @brief Allocate an accessible memory region in kernel heap.
13 * This is NOT the same as kmalloc in Linux!
14 * LunaixOS does NOT guarantee the continuity in physical pages.
23 * @brief calloc for kernel heap. A wrapper for kmalloc
31 * @brief Free the memory region allocated by kmalloc
39 #endif /* __LUNAIX_KALLOC_H */