about summary refs log tree commit diff
path: root/src/libstd/sys/wasm/alloc.rs
AgeCommit message (Collapse)AuthorLines
2020-07-27mv std libs to library/mark-158/+0
2019-12-22Format the worldMark Rousskov-1/+1
2019-11-24Use as_mut_ptr instead of castsPaul Dicker-2/+2
2019-03-05std: Spin for a global malloc lock on wasm32Alex Crichton-15/+80
There's lots of comments in the code, but the main gist of this commit is that the acquisition of the global malloc lock on the `wasm32-unknown-unknown` target when threads are enabled will not spin on contention rather than block.
2019-02-28libstd => 2018Taiki Endo-5/+3
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-17Update the stdsimd submoduleAlex Crichton-2/+2
This brings in a few updates: * Update wasm intrinsic naming for atomics * Update and reimplement most simd128 wasm intrinsics * Other misc improvements here and there, including a small start to AVX-512 intrinsics
2018-11-11std: Delete the `alloc_system` crateAlex Crichton-0/+105
This commit deletes the `alloc_system` crate from the standard distribution. This unstable crate is no longer needed in the modern stable global allocator world, but rather its functionality is folded directly into the standard library. The standard library was already the only stable location to access this crate, and as a result this should not affect any stable code.