| 18 | #include <mmu.h> |
| 19 | |
| 20 | static void list_kmem(void) |
| 21 | { |
| 22 | rt_aspace_print_all(&rt_kernel_space); |
| 23 | } |
| 24 | MSH_CMD_EXPORT(list_kmem, List varea in kernel virtual memory space); |
| 25 | |
| 26 | void rt_kmem_list(void) __attribute__((alias("list_kmem"))); |
nothing calls this directly
no test coverage detected