We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
swbreak:
hwbreak:
1 parent 56ca564 commit 3408ce1Copy full SHA for 3408ce1
lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
@@ -2283,6 +2283,8 @@ StateType ProcessGDBRemote::SetThreadStopInfo(StringExtractor &stop_packet) {
2283
StreamString ostr;
2284
ostr.Printf("%" PRIu64, wp_addr);
2285
description = std::string(ostr.GetString());
2286
+ } else if (key.compare("swbreak") == 0 || key.compare("hwbreak") == 0) {
2287
+ reason = "breakpoint";
2288
} else if (key.compare("library") == 0) {
2289
auto error = LoadModules();
2290
if (error) {
0 commit comments