hl-engine 0.1.0

Safe Rust lifecycle API for the standalone HL Linux guest engine
1
2
3
4
5
6
7
8
9
10
use hl_engine::{Child, Command, Engine};

fn assert_send<T: Send>() {}

#[test]
fn process_owners_can_move_between_threads() {
    assert_send::<Engine>();
    assert_send::<Command>();
    assert_send::<Child>();
}