msb_krun_utils 0.1.0

Shared utilities for msb_krun microVMs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use libc::c_int;
pub use vmm_sys_util::signal::*;

extern "C" {
    fn __libc_current_sigrtmin() -> c_int;
    fn __libc_current_sigrtmax() -> c_int;
}

pub fn sigrtmin() -> c_int {
    unsafe { __libc_current_sigrtmin() }
}

pub fn sigrtmax() -> c_int {
    unsafe { __libc_current_sigrtmax() }
}