use x86_64::VirtAddr; use crate::system::kernel::memory::{StackBounds, ThreadId}; #[derive(Debug)] pub struct Thread { id: ThreadId, stack_ptr: Option, stack_bounds: Option, }