diff options
author | Marvin Borner | 2019-12-17 21:50:02 +0100 |
---|---|---|
committer | Marvin Borner | 2019-12-17 21:50:02 +0100 |
commit | 025709e8643eb24e3360e575564b34ebd8062fd7 (patch) | |
tree | 16e45f68a958419a3e497e7b01e6472e92ffe94c /src/kernel/paging | |
parent | 6188eed3863e6087a7d5b7d988e91d711b45064b (diff) |
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...
Diffstat (limited to 'src/kernel/paging')
-rw-r--r-- | src/kernel/paging/paging.c | 6 |
1 files changed, 3 insertions, 3 deletions
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); } } |