ptask 0.1.2

Spawning parasitic tasks
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![cfg_attr(not(test), no_std)]
extern crate alloc;

#[cfg(test)]
extern crate self as ptask;

mod task;
pub use task::{into_waker, spawn};

#[cfg(test)]
mod tests;