diff options
author | Marvin Borner | 2020-06-02 23:10:27 +0200 |
---|---|---|
committer | Marvin Borner | 2020-06-02 23:10:27 +0200 |
commit | cf9135829836c85735b383f7c50f34232bea94f9 (patch) | |
tree | c6385aae76407504f34f371b799e03aa53c63e5c /src/kernel/interrupts | |
parent | 0b3b63ffdedb2e37e0732c09eb0e967e256f0d71 (diff) |
Much work on the ELF parser and userspace jumping
Diffstat (limited to 'src/kernel/interrupts')
-rw-r--r-- | src/kernel/interrupts/isr.c | 2 |
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(¤t_proc->registers, r, sizeof(struct regs)); + memcpy(¤t_proc->regs, r, sizeof(struct regs)); process_suspend(current_proc->pid); process_force_switch(); } else { |