Remove 32-bit assumptions from the ELF code.

Change-Id: I2c1f3d34c33685799aade8866eec44479ff9f963
This commit is contained in:
Elliott Hughes
2013-09-30 18:43:46 -07:00
parent 6dee3b9aee
commit c620059479
13 changed files with 212 additions and 261 deletions

View File

@@ -137,9 +137,9 @@ static void log_signal_summary(int signum, const siginfo_t* info) {
// "info" will be NULL if the siginfo_t information was not available.
if (info != NULL) {
__libc_format_log(ANDROID_LOG_FATAL, "libc",
"Fatal signal %d (%s) at 0x%08x (code=%d), thread %d (%s)",
signum, signal_name, reinterpret_cast<uintptr_t>(info->si_addr),
info->si_code, gettid(), thread_name);
"Fatal signal %d (%s) at %p (code=%d), thread %d (%s)",
signum, signal_name, info->si_addr, info->si_code,
gettid(), thread_name);
} else {
__libc_format_log(ANDROID_LOG_FATAL, "libc",
"Fatal signal %d (%s), thread %d (%s)",