about summary refs log tree commit diff
path: root/library/panic_abort/src/android.rs
AgeCommit message (Collapse)AuthorLines
2025-02-14panic_abort: Apply unsafe_op_in_unsafe_fnEric Huss-8/+10
2023-09-20Rename BoxMeUp to PanicPayload.Mara Bos-2/+2
2023-03-26Remove unnecessary raw pointer in __rust_start_panic argbjorn3-2/+2
It is no longer necessary as __rust_start_panic switched to the Rust abi.
2022-08-21Replace most uses of `pointer::offset` with `add` and `sub`Maybe Waffle-1/+1
2021-07-29Fix may not to appropriate might not or must notAli Malik-1/+1
2021-04-09android: set abort messageThiƩbaud Weksteen-0/+49
Android has the ability to supply an abort message [1]. This message is automatically included in the debug trace, which helps debugging [2]. Modify panic_abort to populate this message before calling abort(). [1] https://android.googlesource.com/platform/bionic/+/master/libc/include/android/set_abort_message.h [2] https://source.android.com/devices/tech/debug/native-crash