Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 40486334 authored by Josh Gao's avatar Josh Gao Committed by android-build-merger
Browse files

Merge changes from topic 'debuggerd_fallback'

am: 48a31877

Change-Id: I7a0721fc9cdce17975b5160ad65e6c61e12fcf87
parents 75c3c69c 48a31877
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -42,4 +42,10 @@ void engrave_tombstone(int tombstone_fd, BacktraceMap* map,
void engrave_tombstone_ucontext(int tombstone_fd, uintptr_t abort_msg_address, siginfo_t* siginfo,
                                ucontext_t* ucontext);

// Compatibility shim.
static void engrave_tombstone_ucontext(int tombstone_fd, pid_t, pid_t, uintptr_t abort_msg_address,
                                       siginfo_t* siginfo, ucontext_t* ucontext) {
  engrave_tombstone_ucontext(tombstone_fd, abort_msg_address, siginfo, ucontext);
}

#endif // _DEBUGGERD_TOMBSTONE_H