aboutsummaryrefslogtreecommitdiff
path: root/core/sys/linux
diff options
context:
space:
mode:
authorflysand7 <thebumboni@gmail.com>2024-09-26 07:25:40 +1100
committerflysand7 <thebumboni@gmail.com>2024-09-26 07:25:40 +1100
commitacfac3cf2d14f6f27beae9e305b0dc0b57aa6321 (patch)
treeebc3497344a11ee0f30ace3f91fb85cf0b61b6d9 /core/sys/linux
parent842f1ae304f2bd983a6acd4da3aafa4ae74912dc (diff)
Add missing registers in User_Regs on AMD64
Diffstat (limited to 'core/sys/linux')
-rw-r--r--core/sys/linux/types.odin6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/sys/linux/types.odin b/core/sys/linux/types.odin
index 0e5b8218b..07c654749 100644
--- a/core/sys/linux/types.odin
+++ b/core/sys/linux/types.odin
@@ -1136,6 +1136,12 @@ when ODIN_ARCH == .arm32 {
eflags: uint,
rsp: uint,
ss: uint,
+ fs_base: uint,
+ gs_base: uint,
+ ds: uint,
+ es: uint,
+ fs: uint,
+ gs: uint,
}
// All floating point state
_Arch_User_FP_Regs :: struct {