Implement pthread_kill

This commit is contained in:
Jeremy Soller
2023-05-11 21:00:21 -06:00
parent 2941e5b36a
commit c1376d01dc
2 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -69,7 +69,7 @@ pub struct Pthread {
stack_base: *mut c_void,
stack_size: usize,
os_tid: UnsafeCell<OsTid>,
pub(crate) os_tid: UnsafeCell<OsTid>,
}
#[derive(Clone, Copy, Debug, Default, Ord, Eq, PartialOrd, PartialEq)]