1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* sync.rs
 *
 * Developed by Tim Walls <tim.walls@snowgoons.com>
 * Copyright (c) All Rights Reserved, Tim Walls
 */
//! Synchronisation primitives for AVRoxide.

// Imports ===================================================================
mod eventwait;
mod mutex;
mod arc;

pub use self::mutex::{Mutex, MutexGuard};
pub use self::eventwait::{EventWait};
pub use self::arc::{Arc};

// Declarations ==============================================================


// Code ======================================================================

// Tests =====================================================================