1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! Transactional object store, providing memory allocation,
//! transactions, and general facilities for persistent memory programming.
//!
//! Developers new to persistent memory probably want to start with this library.
//!
//! > This is **not** an official port of the NVM Library.
//! >
//! > The official **libpmemobj** documentation can be found at: [http://pmem.io/nvml/libpmemobj/](http://pmem.io/nvml/libpmemobj/)

extern crate pmemobj_sys;
extern crate libc;

pub mod objpool;

pub use objpool::ObjPool;