Test: hash notification states

This commit is contained in:
Alwin Berger 2023-04-24 12:51:09 +02:00
parent ee15313d96
commit 0e5dc21cd6

View File

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