Test: hash notification states

This commit is contained in:
Alwin Berger 2023-04-24 12:51:09 +02:00
parent c2afc0186e
commit ad8cecdba4

View File

@ -55,9 +55,9 @@ pub struct RefinedTCB {
impl Hash for RefinedTCB {
fn hash<H: Hasher>(&self, state: &mut H) {
self.task_name.hash(state);
// self.priority.hash(state);
// self.mutexes_held.hash(state);
// self.notify_state.hash(state);
self.priority.hash(state);
self.mutexes_held.hash(state);
self.notify_state.hash(state);
// self.notify_value.hash(state);
}
}