summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/tests/process/sched_yield.rs
blob: eacf17d5e0f97c97e8d0930fbd89957242309d42 (plain)
1
2
3
4
5
6
7
use rustix::process::sched_yield;

#[test]
fn test_sched_yield() {
    // Just make sure we can call it.
    sched_yield();
}