From 025709e8643eb24e3360e575564b34ebd8062fd7 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 17 Dec 2019 21:50:02 +0100 Subject: Finally fixed text input syscalls! I guess I can officially call me dumb now as I just forgot to return the actual value from the syscall handler... --- src/kernel/paging/paging.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/kernel/paging/paging.c') diff --git a/src/kernel/paging/paging.c b/src/kernel/paging/paging.c index be7e264..5797940 100644 --- a/src/kernel/paging/paging.c +++ b/src/kernel/paging/paging.c @@ -124,17 +124,17 @@ void paging_set_user(uint32_t virt, uint32_t count) uint32_t paging_find_pages(uint32_t count) { - uint32_t continous = 0; + uint32_t continuous = 0; uint32_t startDir = 0; uint32_t startPage = 0; for (uint32_t i = 0; i < 1024; i++) { for (uint32_t j = 0; j < 1024; j++) { if (!(page_tables[i][j] & PT_PRESENT) || (page_tables[i][j] & PT_USED)) { - continous = 0; + continuous = 0; startDir = i; startPage = j + 1; } else { - if (++continous == count) + if (++continuous == count) return (startDir * 0x400000) + (startPage * 0x1000); } } -- cgit v1.2.3