aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/interrupts/isr.c
diff options
context:
space:
mode:
authorMarvin Borner2020-06-02 23:10:27 +0200
committerMarvin Borner2020-06-02 23:10:27 +0200
commitcf9135829836c85735b383f7c50f34232bea94f9 (patch)
treec6385aae76407504f34f371b799e03aa53c63e5c /src/kernel/interrupts/isr.c
parent0b3b63ffdedb2e37e0732c09eb0e967e256f0d71 (diff)
Much work on the ELF parser and userspace jumping
Diffstat (limited to 'src/kernel/interrupts/isr.c')
-rw-r--r--src/kernel/interrupts/isr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/interrupts/isr.c b/src/kernel/interrupts/isr.c
index 73e24a3..ae72a0f 100644
--- a/src/kernel/interrupts/isr.c
+++ b/src/kernel/interrupts/isr.c
@@ -128,7 +128,7 @@ void fault_handler(struct regs *r)
if (current_proc != NULL) {
warn("%s: Suspending process %s with ID %d", message, current_proc->name,
current_proc->pid);
- memcpy(&current_proc->registers, r, sizeof(struct regs));
+ memcpy(&current_proc->regs, r, sizeof(struct regs));
process_suspend(current_proc->pid);
process_force_switch();
} else {