diff options
author | Elliott Hughes <enh@google.com> | 2021-03-17 09:15:15 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2021-03-17 10:03:25 -0700 |
commit | e4781d54a5d7fcabb420f0966259d9ac15d4c111 (patch) | |
tree | ae038249042f29626a8bfce64eefa6469c160b89 /debuggerd/handler/debuggerd_handler.cpp | |
parent | 8a8bde07f569b3d312664bb892c9f1f9ec09804a (diff) |
debuggerd: prepare to abandon ship^Wgdb.
Talk of "gdb" when we currently mean "gdb or lldb" and will soon mean
"lldb" is starting to confuse people. Let's use the more neutral
"debugger" in places where it really doesn't matter.
The switch from gdbclient.py to lldbclient.py is a change for another
day...
Test: treehugger
Change-Id: If39ca7e1cdf4c8bb9475f1791cdaf201fbea50e0
Diffstat (limited to 'debuggerd/handler/debuggerd_handler.cpp')
-rw-r--r-- | debuggerd/handler/debuggerd_handler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debuggerd/handler/debuggerd_handler.cpp b/debuggerd/handler/debuggerd_handler.cpp index ca809e44f..b60739794 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(); @@ -600,7 +600,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); } } |