drone-core 0.14.3

The core crate for Drone, an Embedded Operating System.
1
2
3
4
5
6
7
8
9
10
11
//! Useful synchronization primitives.

pub mod linked_list;
pub mod spsc;

mod mutex;

pub use self::{
    linked_list::LinkedList,
    mutex::{Mutex, MutexGuard},
};