hack async activation detection
This commit is contained in:
parent
bf42de5698
commit
3a601fe250
@ -134,7 +134,9 @@ fn refine_system_states(input: &mut Vec<RawFreeRTOSSystemState>) -> Vec<RefinedF
|
||||
|
||||
// increase when:
|
||||
// current and delayed afterwards
|
||||
if let Some(_) = delay_list.iter().find(|x| (*x).task_name==cur.task_name) {
|
||||
if cur.task_name.contains("async") {
|
||||
*iteration_counts.get_mut(&cur.task_name).unwrap()+=1;
|
||||
} else if let Some(_) = delay_list.iter().find(|x| (*x).task_name==cur.task_name) {
|
||||
*iteration_counts.get_mut(&cur.task_name).unwrap()+=1;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user