diff options
author | Marvin Borner | 2021-06-08 21:13:33 +0200 |
---|---|---|
committer | Marvin Borner | 2021-06-08 21:13:33 +0200 |
commit | 24ce56cccb6f179f8c6ed9ad82e6afb871aabf80 (patch) | |
tree | ec3283601331b6def7218c7b39386d6bb25bcd5b /kernel/features/mm.c | |
parent | f7890c4b16b5d817db286119ac0a88630c3a1cf9 (diff) |
Process exit improvements
Diffstat (limited to 'kernel/features/mm.c')
-rw-r--r-- | kernel/features/mm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/features/mm.c b/kernel/features/mm.c index 0137256..736a5a4 100644 --- a/kernel/features/mm.c +++ b/kernel/features/mm.c @@ -75,7 +75,7 @@ static void page_fault_handler(u32 esp) // Check error code const char *type = (frame->err_code & 1) ? "present" : "non-present"; const char *operation = (frame->err_code & 2) ? "write" : "read"; - const char *super = (frame->err_code & 4) ? "User" : "Super"; + const char *super = (frame->err_code & 4) ? "user" : "super"; // Check cr2 address (virtual and physical) u32 vaddr; @@ -86,8 +86,8 @@ static void page_fault_handler(u32 esp) // Print! - printf("%s process tried to %s a %s page at [vaddr=%x; paddr=%x]\n", super, operation, type, - vaddr, paddr); + printf("Process in %s-state tried to %s a %s page at [vaddr=%x; paddr=%x]\n", super, + operation, type, vaddr, paddr); if (proc && vaddr > proc->stack.user_ptr - PROC_STACK_SIZE - PAGE_SIZE && vaddr < proc->stack.user_ptr + PAGE_SIZE) |