Recognize LOG_WATCHPOINTS in the QSetLogging gdb-remote packet.

llvm-svn: 172311
This commit is contained in:
Jason Molenda 2013-01-12 08:32:28 +00:00
parent 7b7877ad7d
commit d7dc554c87
1 changed files with 5 additions and 0 deletions

View File

@ -1687,6 +1687,11 @@ set_logging (const char *p)
p += sizeof ("LOG_RNB_PACKETS") - 1;
bitmask |= LOG_RNB_PACKETS;
}
else if (strncmp (p, "LOG_WATCHPOINTS", sizeof ("LOG_WATCHPOINTS") - 1) == 0)
{
p += sizeof ("LOG_WATCHPOINTS") - 1;
bitmask |= LOG_WATCHPOINTS;
}
else if (strncmp (p, "LOG_RNB_ALL", sizeof ("LOG_RNB_ALL") - 1) == 0)
{
p += sizeof ("LOG_RNB_ALL") - 1;