[libunwind] [libunwind] Replace process_vm_readv with pipe (PR #74791)
Jordan R AW via cfe-commits
cfe-commits at lists.llvm.org
Fri Dec 8 14:41:47 PST 2023
================
@@ -2822,13 +2825,18 @@ bool UnwindCursor<A, R>::setInfoForSigReturn(Registers_s390x &) {
// onto the stack.
const pint_t pc = static_cast<pint_t>(this->getReg(UNW_REG_IP));
// The PC might contain an invalid address if the unwind info is bad, so
- // directly accessing it could cause a segfault. Use process_vm_readv to
+ // directly accessing it could cause a segfault. Use pipe/write/read to
// read the memory safely instead.
uint16_t inst;
----------------
ajordanr-google wrote:
Fixed.
https://github.com/llvm/llvm-project/pull/74791
More information about the cfe-commits
mailing list