Skip to content

Commit

Permalink
Improve wording a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoqun committed Jan 9, 2024
1 parent beae861 commit 3abe938
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions unified-scheduler-pool/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -456,9 +456,9 @@ impl<S: SpawnableScheduler<TH>, TH: TaskHandler> ThreadManager<S, TH> {
// the handler.
//
// Thus, it's fatal for unified scheduler's advertised superiority to squeeze every cpu
// cycles out of the scheduler thread. Thus, any kinds of overhead sources like
// syscalls and VDSO, and even memory (de)allocation should be avoided at all costs by
// design or by means of offloading at the last resort.
// cycles out of the scheduler thread. Thus, any kinds of unessential overhead sources
// like syscalls, VDSO, and even memory (de)allocation should be avoided at all costs
// by design or by means of offloading at the last resort.
move || loop {
let mut is_finished = false;
while !is_finished {
Expand Down

0 comments on commit 3abe938

Please sign in to comment.