about summary refs log tree commit diff
path: root/library/std/src/sys/pal/unix/alloc.rs
AgeCommit message (Collapse)AuthorLines
2024-08-27std: move allocators to `sys`joboet-88/+0
2024-07-21Fix warnings when checking armv6k-nintendo-3dsIan Chamberlain-1/+1
Also fix one instance of unsafe_op_in_unsafe_fn that's specific to horizon + vita - most others should be common with other code.
2024-05-19fix typoRalf Jung-2/+2
Co-authored-by: Jubilee <46493976+workingjubilee@users.noreply.github.com>
2024-05-19use posix_memalign on most Unix targetsRalf Jung-9/+7
2024-05-18android: use posix_memalign for aligned allocationsRalf Jung-18/+1
2024-05-15Rollup merge of #125003 - RalfJung:aligned_alloc, r=cuviperLeón Orell Valerian Liehr-11/+8
avoid using aligned_alloc; posix_memalign is better-behaved Also there's no reason why wasi should be different than all the other Unixes here.
2024-05-14avoid using aligned_alloc; posix_memalign is better-behavedRalf Jung-11/+8
2024-05-11std::alloc: using posix_memalign instead of memalign on solarish.David Carlier-2/+0
simpler code path since small alignments are already taking care of. close GH-124787
2024-05-06iOS/tvOS/watchOS: Fix alloc w. large alignment on older versionsMads Marquart-1/+7
Tested on an old MacBook and the iOS simulator.
2024-01-11std: begin moving platform support modules into `pal`joboet-0/+106