aboutsummaryrefslogtreecommitdiffstats
path: root/linker/debugger.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-05-14 17:36:35 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-05-14 17:36:37 +0000
commit15c13bd6cc0ce44d8f083f75d0bfa926a88cc169 (patch)
tree7083cd234073afa5179b94b3d978550c890af90c /linker/debugger.cpp
parentbac795586bbc5dcbe886d8d781710f60c4c19d9b (diff)
parent1728b2396591853345507a063ed6075dfd251706 (diff)
downloadandroid_bionic-15c13bd6cc0ce44d8f083f75d0bfa926a88cc169.tar.gz
android_bionic-15c13bd6cc0ce44d8f083f75d0bfa926a88cc169.tar.bz2
android_bionic-15c13bd6cc0ce44d8f083f75d0bfa926a88cc169.zip
Merge "Switch to g_ for globals."
Diffstat (limited to 'linker/debugger.cpp')
-rw-r--r--linker/debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linker/debugger.cpp b/linker/debugger.cpp
index 272c16a23..521a59909 100644
--- a/linker/debugger.cpp
+++ b/linker/debugger.cpp
@@ -217,7 +217,7 @@ static void send_debuggerd_packet(siginfo_t* info) {
debugger_msg_t msg;
msg.action = DEBUGGER_ACTION_CRASH;
msg.tid = gettid();
- msg.abort_msg_address = reinterpret_cast<uintptr_t>(gAbortMessage);
+ msg.abort_msg_address = reinterpret_cast<uintptr_t>(g_abort_message);
msg.original_si_code = (info != NULL) ? info->si_code : 0;
int ret = TEMP_FAILURE_RETRY(write(s, &msg, sizeof(msg)));
if (ret == sizeof(msg)) {