dope 0.3.1

The manifold runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::backend::profile::Profile;

#[derive(Debug)]
pub struct Tail;

impl Profile for Tail {
    const RING_ENTRIES: u32 = 2048;
    const DEFER_TASKRUN: bool = false;

    const TASK_SLAB_CAPACITY: usize = 16384;

    const IDLE_WINDOW: std::time::Duration = std::time::Duration::from_secs(10);
}