summaryrefslogtreecommitdiff
path: root/debuggerd/handler/debuggerd_handler.cpp
diff options
context:
space:
mode:
authorScott Lobdell <slobdell@google.com>2021-03-29 16:12:24 +0000
committerDaniel Norman <danielnorman@google.com>2021-03-29 14:52:34 -0700
commit268fff7088f0ab311c2de902178054ce40a42243 (patch)
tree9e9d04f8d3f2e671fe10c6f7abf3d111781f3551 /debuggerd/handler/debuggerd_handler.cpp
parent9bad2176c21eab589d47e2971d7c3450d5fde971 (diff)
parenta5175f4205936a1f1888e30aed93960384ceb4af (diff)
Merge SP1A.210329.001
Change-Id: I5658dcb0f7ed2ca7deb5eeb333981daaf76592ca
Diffstat (limited to 'debuggerd/handler/debuggerd_handler.cpp')
-rw-r--r--debuggerd/handler/debuggerd_handler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/debuggerd/handler/debuggerd_handler.cpp b/debuggerd/handler/debuggerd_handler.cpp
index 9e7b6ba9b..74b5c719e 100644
--- a/debuggerd/handler/debuggerd_handler.cpp
+++ b/debuggerd/handler/debuggerd_handler.cpp
@@ -274,7 +274,7 @@ static void create_vm_process() {
// There appears to be a bug in the kernel where our death causes SIGHUP to
// be sent to our process group if we exit while it has stopped jobs (e.g.
- // because of wait_for_gdb). Use setsid to create a new process group to
+ // because of wait_for_debugger). Use setsid to create a new process group to
// avoid hitting this.
setsid();
@@ -604,7 +604,7 @@ static void debuggerd_signal_handler(int signal_number, siginfo_t* info, void* c
// starting to dump right before our death.
pthread_mutex_unlock(&crash_mutex);
} else {
- // Resend the signal, so that either gdb or the parent's waitpid sees it.
+ // Resend the signal, so that either the debugger or the parent's waitpid sees it.
resend_signal(info);
}
}