aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/include/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/include/thread.h')
-rw-r--r--src/kernel/include/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/include/thread.h b/src/kernel/include/thread.h
index 74499c6..c8072c9 100644
--- a/src/kernel/include/thread.h
+++ b/src/kernel/include/thread.h
@@ -28,7 +28,7 @@ typedef struct thread {
region_info_t *stack_region;
struct process *proc;
- isr_handler_t kmem_violation_handler; // page fault in kernel memory accessed by user code (violation)
+ isr_handler_t user_ex_handler; // page fault in kernel memory accessed by user code (violation)
struct thread *next_in_queue;
} thread_t;