aboutsummaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/amd64/amd64/syscall.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/arch/amd64/amd64/syscall.c b/sys/arch/amd64/amd64/syscall.c
index 9b1f988..e80fe94 100644
--- a/sys/arch/amd64/amd64/syscall.c
+++ b/sys/arch/amd64/amd64/syscall.c
@@ -39,13 +39,10 @@ __syscall(struct trapframe *tf)
.arg2 = tf->rcx,
.arg3 = tf->r8,
.arg4 = tf->r9,
- .sp = tf->rsp,
- .ret = tf->rax,
+ .sp = tf->rsp
};
if (args.code < __MAX_SYSCALLS) {
- g_syscall_table[tf->rax](&args);
+ tf->rax = g_syscall_table[tf->rax](&args);
}
-
- tf->rax = args.ret;
}