Sha256: 8f80fef12e528628d19c26d26ecbad61b9644505a872a49f842820aa52018cf8
Contents?: true
Size: 426 Bytes
Versions: 4
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/9799919799/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
4 entries across 4 versions & 1 rubygems