Merge branch 'interrupt-rework' into prog-loader
[lunaix-os.git] / lunaix-os / includes / lunaix / process.h
index 0029e363d759a4366d1b684351341145ce388f7f..27137a103db53763d07f7c28d02b5f9a5107df29 100644 (file)
@@ -52,9 +52,9 @@ struct proc_info
     pid_t pid;                // offset = 0
     struct proc_info* parent; // offset = 4
     isr_param intr_ctx;       // offset = 8
-    uintptr_t ustack_top;     // offset = 84
-    void* page_table;         // offset = 88
-    void* fxstate;            // offset = 92
+    uintptr_t ustack_top;     // offset = 84 -> 56 -> 60
+    void* page_table;         // offset = 88 -> 60 -> 64
+    void* fxstate;            // offset = 92 -> 64 -> 68
 
     /* ---- critical section end ---- */