From 469d1ed261943fb312767c0052ac1b09f06d6cd5 Mon Sep 17 00:00:00 2001 From: Tianhao Wang Date: Wed, 5 Jun 2024 08:01:45 +0200 Subject: proc: add basic task struct Signed-off-by: Tianhao Wang --- src/lib.rs | 1 + src/proc/mod.rs | 1 + src/proc/task.rs | 13 +++++++++++++ 3 files changed, 15 insertions(+) create mode 100644 src/proc/mod.rs create mode 100644 src/proc/task.rs (limited to 'src') diff --git a/src/lib.rs b/src/lib.rs index f1499c4..e711688 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,6 +11,7 @@ mod io; mod machine; mod mm; use crate::machine::key::Modifiers; +mod proc; use arch::x86_64::interrupt; use arch::x86_64::interrupt::pic_8259; use arch::x86_64::interrupt::pic_8259::PicDeviceInt; diff --git a/src/proc/mod.rs b/src/proc/mod.rs new file mode 100644 index 0000000..cdafe4a --- /dev/null +++ b/src/proc/mod.rs @@ -0,0 +1 @@ +pub mod task; 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, +} -- cgit v1.2.3-70-g09d2