aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/scheduler/multi_thread/trace_mock.rs
blob: 2c17a4e38b58826557788985245f0ea8a17566f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
pub(super) struct TraceStatus {}

impl TraceStatus {
    pub(super) fn new(_: usize) -> Self {
        Self {}
    }

    pub(super) fn trace_requested(&self) -> bool {
        false
    }
}