about summary refs log tree commit diff
path: root/library/std/src/sys/unix/alloc.rs
AgeCommit message (Collapse)AuthorLines
2024-01-11std: begin moving platform support modules into `pal`joboet-106/+0
2023-08-26wasi: round up the size for `aligned_alloc`Josh Stone-1/+5
C11 `aligned_alloc` requires that the size be a multiple of the alignment. This is enforced in the wasi-libc emmalloc implementation, which always returns NULL if the size is not a multiple. (The default `MALLOC_IMPL=dlmalloc` does not currently check this.)
2023-05-07PS Vita std supportNikolay Arhipov-1/+2
2022-06-13Horizon OS STD supportMeziu-1/+2
Co-authored-by: Ian Chamberlain <ian.h.chamberlain@gmail.com> Co-authored-by: Mark Drobnak <mark.drobnak@gmail.com>
2021-08-10STD support for the ESP-IDF frameworkivmarkov-1/+2
2021-04-14Move `std::sys_common::alloc` to `std::sys::common`Christiaan Dirkx-1/+1
2020-09-15Consolidate wasi alloc with unix alloc.Eric Huss-42/+44
2020-07-27mv std libs to library/mark-0/+97