1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-17 13:47:08 +00:00
termux-packages/packages/kphp/common-server-crash-dump.cpp.patch
2022-01-14 10:49:11 +02:00

12 lines
534 B
Diff

--- a/common/server/crash-dump.cpp
+++ b/common/server/crash-dump.cpp
@@ -116,6 +116,8 @@
crash_dump_write_reg(LITERAL_WITH_LENGTH("R15=0x"), uc->uc_mcontext.gregs[REG_R15], buffer);
#elif defined(__aarch64__)
+ const auto *uc = static_cast<ucontext_t *>(ucontext);
+
crash_dump_write_reg(LITERAL_WITH_LENGTH("SP=0x"), uc->uc_mcontext.sp, buffer);
crash_dump_write_reg(LITERAL_WITH_LENGTH("PC=0x"), uc->uc_mcontext.pc, buffer);
crash_dump_write_reg(LITERAL_WITH_LENGTH("PSTATE=0x"), uc->uc_mcontext.pstate, buffer);