aboutsummaryrefslogtreecommitdiff
path: root/src/proc/task.rs
diff options
context:
space:
mode:
authorTianhao Wang <shrik3@mailbox.org>2024-06-05 08:01:45 +0200
committerTianhao Wang <shrik3@mailbox.org>2024-06-11 15:17:13 +0200
commit469d1ed261943fb312767c0052ac1b09f06d6cd5 (patch)
tree2c266cf47515e0b0d901507aee045467bc294b80 /src/proc/task.rs
parent2c4366a804ae6c389614ff8da9b0225ffb6ce14a (diff)
proc: add basic task struct
Signed-off-by: Tianhao Wang <shrik3@mailbox.org>
Diffstat (limited to 'src/proc/task.rs')
-rw-r--r--src/proc/task.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/proc/task.rs b/src/proc/task.rs
new file mode 100644
index 0000000..0ff2065
--- /dev/null
+++ b/src/proc/task.rs
@@ -0,0 +1,13 @@
+use crate::arch::x86_64::arch_regs;
+
+/// currently only kernelSp and Context are important.
+/// the task struct will be placed on the starting addr (low addr) of the kernel stack.
+/// therefore we can retrive the task struct at anytime by masking the kernel stack
+#[repr(C)]
+#[repr(packed)]
+pub struct Task {
+ pub task_id: u32,
+ pub kernel_stack: u64,
+ pub user_stack: u64,
+ pub context: arch_regs::Context64,
+}