Support sending signals to individual threads.

This commit is contained in:
4lDO2
2024-07-16 22:06:21 +02:00
parent 8de850e7e9
commit 3c540efb00
4 changed files with 236 additions and 213 deletions
-1
View File
@@ -30,7 +30,6 @@ pub struct Process {
/// Context is being waited on
pub waitpid: Arc<WaitMap<WaitpidKey, (ProcessId, usize)>>,
pub status: ProcessStatus,
/// Threads of process
pub threads: Vec<Weak<RwSpinlock<Context>>>,
}
#[derive(Debug, Clone, Copy, Default)]