diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-19 20:06:55 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-19 20:06:55 -0400 |
commit | 63f8814b8b5629a84562be6b756c8f50c10c1677 (patch) | |
tree | 09b69554da37f027019053a11845d305608c8faf /sys/include | |
parent | 6828c7b57019f458988ebadd13914327312981e7 (diff) |
kernel: syscall: Fix syscall order
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/sys/syscall.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/include/sys/syscall.h b/sys/include/sys/syscall.h index 66dc5f3..b78e2ad 100644 --- a/sys/include/sys/syscall.h +++ b/sys/include/sys/syscall.h @@ -43,7 +43,8 @@ enum { struct syscall_args { uint64_t code; - uint64_t arg0, arg1, arg2, arg3, arg4; + uint64_t arg0, arg1, arg2; + uint64_t arg3, arg4, arg5, arg6; uint64_t ip; uint64_t sp; }; |