summaryrefslogtreecommitdiff
path: root/src/sys/include/arch/amd64/pcb.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/include/arch/amd64/pcb.h')
-rw-r--r--src/sys/include/arch/amd64/pcb.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sys/include/arch/amd64/pcb.h b/src/sys/include/arch/amd64/pcb.h
index 852e28d..068dddb 100644
--- a/src/sys/include/arch/amd64/pcb.h
+++ b/src/sys/include/arch/amd64/pcb.h
@@ -31,14 +31,17 @@
#define _MACHINE_PCB_H_ 1
#include <machine/vas.h>
+#include <machine/frame.h>
/*
* Represents MD specific process data
*
* @vas: Current virtual address space
+ * @tf: Processor state save
*/
struct md_pcb {
struct vm_vas vas;
+ struct trapframe tf;
};
#endif /* _MACHINE_PCB_H_ */