hara-native 0.1.13

HAL-free native host runtime and package launcher for Hara
Documentation
1
2
3
4
5
6
7
8
use crate::work::{process_work_host, WorkHost};

impl crate::SessionKernel {
    /// Return the process/evaluator-thread work host shared by every session.
    pub fn work_host(&self) -> WorkHost {
        process_work_host()
    }
}