Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoqun committed Sep 19, 2024
1 parent 4a4f576 commit 97ac127
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions unified-scheduler-logic/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -998,9 +998,9 @@ impl SchedulingStateMachine {
fn try_reblock_task(blocking_task: &Task, blocked_task_count: &mut ShortCounter, token: &mut BlockedUsageCountToken) -> bool {
if blocking_task.has_blocked_usage(token) {
true
} else if blocking_task.is_buffered(token) {
blocked_task_count.increment_self();
true
//} else if blocking_task.is_buffered(token) {
// blocked_task_count.increment_self();
// true
} else {
false
}
Expand Down

0 comments on commit 97ac127

Please sign in to comment.