Gedichte
Musik
Bilder
Quellcodebibliothek
Diashow
Normaldarstellung
Quellcodebibliothek
Statistik
Leitseite
products
/
Sources
/
formale Sprachen
/
C
/
Firefox
/
third_party
/
rust
/
rustix
/
src
/
process
/ (
Browser von der Mozilla Stiftung
Version 136.0.1
©
) Datei vom 10.2.2025 mit Größe 426 B
Quelle sched_yield.rs Sprache: unbekannt
use crate::backend;
/// `sched_yield()`—Hints to the OS that other processes should run.
///
/// This function always succeeds.
///
/// # References
/// - [POSIX]
/// - [Linux]
///
/// [POSIX]:
https://pubs.opengroup.org/onlinepubs/9699919799/functions/sched_yiel
d.html
/// [Linux]:
https://man7.org/linux/man-pages/man2/sched_yield.2.html
#[inline]
pub fn sched_yield() {
backend::process::syscalls::sched_yield()
}
[ Dauer der Verarbeitung: 0.24 Sekunden (vorverarbeitet)
]
2026-04-02