We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be2f549 commit c1882cfCopy full SHA for c1882cf
src/sched.rs
@@ -390,8 +390,8 @@ mod sched_priority {
390
/// See [man_sched(7)](https://man7.org/linux/man-pages/man7/sched.7.html) for more details
391
/// on the differences in behavior.
392
pub enum Scheduler {
393
- /// The default scheduler on non-realtime linux - also known as SCHED_NORMAL.
394
- SCHED_OTHER,
+ /// The default scheduler on non-realtime linux - also known as SCHED_OTHER.
+ SCHED_NORMAL,
395
/// The realtime FIFO scheduler. All FIFO threads have priority higher than 0 and
396
/// preempt SCHED_OTHER threads. Threads are executed in priority order, using
397
/// first-in-first-out lists to handle two threads with the same priority.
0 commit comments