commit | e9ea0da82e0db315e62fe3b3d5e3580d3669d341 | [log] [tgz] |
---|---|---|
author | Matt Kopec <Matt.Kopec@intel.com> | Tue May 07 19:29:28 2013 +0000 |
committer | Matt Kopec <Matt.Kopec@intel.com> | Tue May 07 19:29:28 2013 +0000 |
tree | 574c33e5391f69293eef0f8fe5d6be61f9d06a5f | |
parent | ba4e61d3f5f8cfd30b5a359e18e7da98b3c465b8 [diff] [blame] |
Add watchpoint support for Linux on 64-bit host. llvm-svn: 181341
diff --git a/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp b/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp index cefacc3..a33470b 100644 --- a/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp +++ b/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp
@@ -221,6 +221,9 @@ case eBreakpointMessage: str = "eBreakpointMessage"; break; + case eWatchpointMessage: + str = "eWatchpointMessage"; + break; case eCrashMessage: str = "eCrashMessage"; break;