rtsc 0.4.5

Real-time Synchronization Components
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use super::Params;
use crate::{Error, Result};

pub fn apply_for_current(_params: &Params) -> Result<()> {
    Err(Error::Unimplemented)
}

pub fn apply(_tid: libc::c_int, _params: &Params) -> Result<()> {
    Err(Error::Unimplemented)
}

pub fn prealloc_heap(size: usize) -> Result<()> {
    if size == 0 {
        return Ok(());
    }
    Err(Error::Unimplemented)
}