summary refs log tree commit diff
path: root/src/libstd/sys/unix/alloc.rs
AgeCommit message (Collapse)AuthorLines
2019-10-06redesign of the interface to the unikernel HermitCoreStefan Lankes-2/+0
- the old interface between HermitCore and the Rust Standard Library based on a small C library (newlib) - remove this interface and call directly the unikernel - remove the dependency to the HermitCore linker - use rust-lld as linker
2019-07-18Fix clippy::clone_on_copy warningsMateusz MikuĊ‚a-1/+1
2019-07-03fix unused-import error on androidRalf Jung-2/+1
2019-07-02improve and deduplicate commentsRalf Jung-4/+3
2019-07-02request at least ptr-size alignment from posix_memalignRalf Jung-1/+11
2019-02-28libstd => 2018Taiki Endo-4/+3
2018-12-25Remove licensesMark Rousskov-10/+0
2018-11-11std: Delete the `alloc_system` crateAlex Crichton-0/+100
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.