diff options
author | Kévin PETIT <kevin.petit@arm.com> | 2013-12-19 12:36:59 +0000 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-01-30 18:05:03 -0800 |
commit | abc60c26b7448e6b2842351688a7a823b8b787d6 (patch) | |
tree | 82bb8aed19dbc109ad06a2c8887b65fbdf63c4f3 /debuggerd/debuggerd.cpp | |
parent | e94985a2514312e7103fbb6a6a45e473031cb6c0 (diff) |
AArch64: Port debuggerd
Change-Id: Ib18f76f375a1d70c84e0a09d221e17ac43144b96
Signed-off-by: Kévin PETIT <kevin.petit@arm.com>
Diffstat (limited to 'debuggerd/debuggerd.cpp')
-rw-r--r-- | debuggerd/debuggerd.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/debuggerd/debuggerd.cpp b/debuggerd/debuggerd.cpp index de8ba9d4e..c39aaf6d6 100644 --- a/debuggerd/debuggerd.cpp +++ b/debuggerd/debuggerd.cpp @@ -205,7 +205,8 @@ static int read_request(int fd, debugger_request_t* out_request) { return -1; } if (status == sizeof(debugger_msg_t)) { - XLOG("crash request of size %d abort_msg_address=%#08x\n", status, msg.abort_msg_address); + XLOG("crash request of size %d abort_msg_address=0x%" PRIPTR "\n", + status, msg.abort_msg_address); } else { LOG("invalid crash request of size %d (from pid=%d uid=%d)\n", status, cr.pid, cr.uid); return -1; |