summaryrefslogtreecommitdiff
path: root/src/kernel/proc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/proc.h')
-rw-r--r--src/kernel/proc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/kernel/proc.h b/src/kernel/proc.h
index a371e04..bd4c961 100644
--- a/src/kernel/proc.h
+++ b/src/kernel/proc.h
@@ -34,7 +34,8 @@ struct Proc {
/* if NULL, refcount == 1. kmalloc'd */
uint64_t *pages_refcount;
- CpuRegs regs;
+ UserRegs regs;
+ _Alignas(16) char sse[512];
Proc *sibling, *child, *parent;
enum proc_state state;