From ff405d15e20b360afe93af5c23d6972f28fc38b9 Mon Sep 17 00:00:00 2001 From: Wojtek Kosior Date: Tue, 31 Dec 2019 17:21:01 +0100 Subject: print info about completed initialization of kernel's paging structures --- paging.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'paging.c') diff --git a/paging.c b/paging.c index 0de63b8..6560047 100644 --- a/paging.c +++ b/paging.c @@ -164,6 +164,10 @@ void setup_pager_structures(uint32_t available_mem) }; first_free_section = kernel_sections_count; + + puts("Initialized kernel's internal structures for paging"); + prints("We have "); printdect(free_sections_count); + puts(" free sections left for use"); } // return section number or CLAIM_FAILURE in case of failure -- cgit v1.2.3