Replace wasmer_runtime_code::memory::Atomic with std::sync::atomic atomics.

This means we lose op_new(), op_weak() and proxy() from the interface.
This commit is contained in:
Nick Lewycky
2019-08-16 17:36:11 -07:00
parent 2ebe93cc72
commit a3fe372beb
4 changed files with 21 additions and 274 deletions

View File

@ -100,7 +100,7 @@ pub use wasmer_runtime_core::{compile_with, validate};
pub use wasmer_runtime_core::{func, imports};
pub mod memory {
pub use wasmer_runtime_core::memory::{Atomic, Atomically, Memory, MemoryView};
pub use wasmer_runtime_core::memory::{Atomically, Memory, MemoryView};
}
pub mod wasm {