virt_mshv_vtl/processor/
nice.rs

1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

// UNSAFETY: Calling nice.
#![expect(unsafe_code)]

pub(crate) fn nice(i: i32) {
    // SAFETY: calling as documented.
    unsafe {
        libc::nice(i);
    }
}