asteroids game rewrite

This commit is contained in:
FantasyPvP
2023-12-04 10:42:17 +00:00
parent f400a1cf22
commit b0da71942a
17 changed files with 569 additions and 265 deletions
+9
View File
@@ -0,0 +1,9 @@
use x86_64::VirtAddr;
use crate::system::kernel::memory::{StackBounds, ThreadId};
#[derive(Debug)]
pub struct Thread {
id: ThreadId,
stack_ptr: Option<VirtAddr>,
stack_bounds: Option<StackBounds>,
}