From 268b36188ee15e09fa165456335866db22de52d9 Mon Sep 17 00:00:00 2001 From: Julien CLEMENT Date: Fri, 30 Dec 2022 23:51:03 +0100 Subject: [PATCH] start thread new Signed-off-by: Julien CLEMENT --- src/proc/thread/mod.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/proc/thread/mod.rs b/src/proc/thread/mod.rs index 78fba03..21401a5 100644 --- a/src/proc/thread/mod.rs +++ b/src/proc/thread/mod.rs @@ -1,3 +1,9 @@ pub struct Thread { rsp: u64 +} + +impl Thread { + pub fn new() { + + } } \ No newline at end of file