diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-17 14:16:55 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-17 14:16:55 -0400 |
commit | 7ee9347560768641096df68c545ac085a20233e4 (patch) | |
tree | 5b567f2e98cd9e6aeee33eeecd7fbf6f2fafdeab /include/arch/x86_64/object.h | |
parent | f466364b8a3858e7b3f19258d142851cb4a7e6d6 (diff) | |
download | jove-kernel-7ee9347560768641096df68c545ac085a20233e4.tar.gz jove-kernel-7ee9347560768641096df68c545ac085a20233e4.tar.bz2 jove-kernel-7ee9347560768641096df68c545ac085a20233e4.zip |
working usermode pager. fix usermode interrupts
Diffstat (limited to 'include/arch/x86_64/object.h')
-rw-r--r-- | include/arch/x86_64/object.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/arch/x86_64/object.h b/include/arch/x86_64/object.h index 770487b..e13a987 100644 --- a/include/arch/x86_64/object.h +++ b/include/arch/x86_64/object.h @@ -12,6 +12,7 @@ typedef struct jove_ThreadControlBlock void *stack; uintptr_t sp, ksp; void *pml4; + void *mailbox; uint8_t kstack[KERNEL_STACKBYTES]; } tcb_t; |