sched: add POSIX signal support
We have added POSIX signals to KirkOS It is very much experimental Alongside, we have PCI support fully, and we have imported sbase coreutils, I'm not too sure if all of them work, likely not, but a good few should be okay. Signed-off-by: kaguya <kaguya3311@national.shitposting.agency>
This commit is contained in:
+1
-1
@@ -71,7 +71,7 @@ void vmm_init(struct limine_memmap_entry **memmap, size_t memmap_entries) {
|
||||
vmm_map_page(kernel_pagemap, p + MEM_PHYS_OFFSET, p, 0b11, Size2MiB);
|
||||
}
|
||||
|
||||
for (size_t i = 0; i < (memmap_entries - 1); i++) {
|
||||
for (size_t i = 0; i < (memmap_entries); i++) {
|
||||
uint64_t base = memmap[i]->base;
|
||||
uint64_t length = memmap[i]->length;
|
||||
uint64_t top = base + length;
|
||||
|
||||
Reference in New Issue
Block a user