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:27:11 +1100
commite54b1560ee436e2c4b11c551f82b5e24d1161fe4 (patch)
treeb2ce35aff909749b16cb7f33fac8bb0ae9abea1c /core/sys/linux
parent8371ef66816c60e0a69dd52255d36a0718542f3d (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 {