aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
diff options
context:
space:
mode:
authorJaydeep Patil <jaydeep.patil@imgtec.com>2015-08-13 03:46:01 +0000
committerJaydeep Patil <jaydeep.patil@imgtec.com>2015-08-13 03:46:01 +0000
commit725666cc65f136100b6cb28ed850a712fa1eac1d (patch)
treeed98df120ed26933efb41140fa0b523202012e06 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
parent831435042e887d35876eba411a07082eb6f6a246 (diff)
downloadllvm-725666cc65f136100b6cb28ed850a712fa1eac1d.zip
llvm-725666cc65f136100b6cb28ed850a712fa1eac1d.tar.gz
llvm-725666cc65f136100b6cb28ed850a712fa1eac1d.tar.bz2
[LLDB][MIPS] Support standard GDB remote stop reply packet for watchpoint
SUMMARY: The patch supports TAAwatch:addr packet. The patch also sets m_watchpoints_trigger_after_instruction to eLazyBoolNo when qHostInfo or qWatchpointSupportInfo is not supported by the target. Reviewers: jingham, clayborg Subscribers: nitesh.jain, mohit.bhakkad, sagar, bhushan and lldb-commits Differential Revision: http://reviews.llvm.org/D11747 llvm-svn: 244865
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h')
-rw-r--r--lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
index deb41b0..b08ff06 100644
--- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
+++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
@@ -287,10 +287,10 @@ public:
GetWatchpointSupportInfo (uint32_t &num);
Error
- GetWatchpointSupportInfo (uint32_t &num, bool& after);
+ GetWatchpointSupportInfo (uint32_t &num, bool& after, const ArchSpec &arch);
Error
- GetWatchpointsTriggerAfterInstruction (bool &after);
+ GetWatchpointsTriggerAfterInstruction (bool &after, const ArchSpec &arch);
const ArchSpec &
GetHostArchitecture ();