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 30fada0 commit b80069b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unified-scheduler-logic/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@ impl SchedulingStateMachine {
#[must_use]
pub fn schedule_next_buffered_task(&mut self) -> Option<Task> {
while let Some(task) = self.buffered_task_queue.pop() {
assert!(task.is_executed(&mut self.count_token));
assert!(task.is_buffered(&mut self.count_token));
assert!(self.is_task_runnable());
if task.has_blocked_usage(&mut self.count_token) {
continue;
Expand Down

0 comments on commit b80069b

Please sign in to comment.