Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoqun committed Sep 20, 2024
1 parent e7b3566 commit 533abae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unified-scheduler-logic/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -997,8 +997,8 @@ 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) {
assert!(!blocking_task.is_buffered(token));
true
assert!(blocking_task.is_buffered(token));
false
//} else if blocking_task.is_buffered(token) {
// blocked_task_count.increment_self();
// true
Expand Down

0 comments on commit 533abae

Please sign in to comment.