Skip to content

Commit

Permalink
fix(lab4): fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Yiyang Wu <[email protected]>
  • Loading branch information
ToolmanP committed Dec 19, 2024
1 parent c93e566 commit 57e5a0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lab4/kernel/sched/policy_rr.c
Original file line number Diff line number Diff line change
Expand Up @@ -265,10 +265,10 @@ int rr_sched(void)
switch_to_thread(old);
return 0; /* no schedule needed */
}
/* LAB 4 TODO BEGIN (exercise 6) */
/* LAB 4 TODO BEGIN (exercise 4) */
/* Refill budget for current running thread (old) and enqueue the current thread.*/

/* LAB 4 TODO END (exercise 6) */
/* LAB 4 TODO END (exercise 4) */

} else if (!thread_is_ts_blocking(old)
&& !thread_is_ts_waiting(old)) {
Expand Down

0 comments on commit 57e5a0c

Please sign in to comment.