about summary refs log tree commit diff
path: root/library/std/src/sys/unix/alloc.rs
diff options
context:
space:
mode:
authorDylan DPC <99973273+Dylan-DPC@users.noreply.github.com>2022-11-01 14:12:25 +0530
committerGitHub <noreply@github.com>2022-11-01 14:12:25 +0530
commit43634675f63c3d3cdf8234e2ec264e7327aa6b39 (patch)
tree2a2a6edee094fe535f473abd3eea5e53709c1bf8 /library/std/src/sys/unix/alloc.rs
parentdc05f60c1ff4e2cb2e6eb80c9b3afa612ce28c7f (diff)
parent56074b5231ceef266a1097ea355f62c951e1b468 (diff)
downloadrust-43634675f63c3d3cdf8234e2ec264e7327aa6b39.tar.gz
rust-43634675f63c3d3cdf8234e2ec264e7327aa6b39.zip
Rollup merge of #103061 - Amanieu:rewrite_alloc_error_handler, r=bjorn3
Rewrite implementation of `#[alloc_error_handler]`

The new implementation doesn't use weak lang items and instead changes `#[alloc_error_handler]` to an attribute macro just like `#[global_allocator]`.

The attribute will generate the `__rg_oom` function which is called by the compiler-generated `__rust_alloc_error_handler`. If no `__rg_oom` function is defined in any crate then the compiler shim will call `__rdl_oom` in the alloc crate which will simply panic.

This also fixes link errors with `-C link-dead-code` with `default_alloc_error_handler`: `__rg_oom` was previously defined in the alloc crate and would attempt to reference the `oom` lang item, even if it didn't exist. This worked as long as `__rg_oom` was excluded from linking since it was not called.

This is a prerequisite for the stabilization of `default_alloc_error_handler` (#102318).
Diffstat (limited to 'library/std/src/sys/unix/alloc.rs')
0 files changed, 0 insertions, 0 deletions