Sha256: 6565faa3928b66ddc74a65e893e15edfa4b9be4f7e5f5f68527501a7f6bc3350
Contents?: true
Size: 426 Bytes
Versions: 43
Compression:
Stored size: 426 Bytes
Contents
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_yield.html /// [Linux]: https://man7.org/linux/man-pages/man2/sched_yield.2.html #[inline] pub fn sched_yield() { backend::process::syscalls::sched_yield() }
Version data entries
43 entries across 34 versions & 1 rubygems