summaryrefslogtreecommitdiffstats
path: root/library/std/src/sys/itron/thread_parking.rs
blob: fe9934439d152fddbfa0c417abae9c8a465a7cf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
use super::abi;
use super::error::expect_success_aborting;
use super::time::with_tmos;
use crate::time::Duration;

pub type ThreadId = abi::ID;

pub use super::task::current_task_id_aborting as current;

pub fn park(_hint: usize) {
    match unsafe { abi::slp_tsk() } {
        abi::E_OK | abi::E_RLWAI => {}
        err => {
            expect_success_aborting(err, &"slp_tsk");
        }
    }
}

pub fn park_timeout(dur: Duration, _hint: usize) {
    match with_tmos(dur, |tmo| unsafe { abi::tslp_tsk(tmo) }) {
        abi::E_OK | abi::E_RLWAI | abi::E_TMOUT => {}
        err => {
            expect_success_aborting(err, &"tslp_tsk");
        }
    }
}

pub fn unpark(id: ThreadId, _hint: usize) {
    match unsafe { abi::wup_tsk(id) } {
        // It is allowed to try to wake up a destroyed or unrelated task, so we ignore all
        // errors that could result from that situation.
        abi::E_OK | abi::E_NOEXS | abi::E_OBJ | abi::E_QOVR => {}
        err => {
            expect_success_aborting(err, &"wup_tsk");
        }
    }
}