rt 0.19.1

A real-time operating system capable of full preemption
Documentation
1
2
3
4
5
6
7
8
9
#![no_main]
#![cfg_attr(target_os = "none", no_std)]

fn empty() {
    rt::task::drop_privilege();
    rt::exit();
}

rt::task!(empty, rt::stack::MIN, 0);