swym 0.1.0-preview

Transactional memory for rust
1
2
3
4
5
6
7
8
9
mod global;
mod synch;
mod thread_list;

pub use self::{
    global::{FreezeList, GlobalThreadList, Write},
    synch::Synch,
    thread_list::ThreadList,
};