[Lldb-commits] [lldb] r155694 - /lldb/trunk/source/Commands/CommandObjectWatchpoint.cpp

Johnny Chen johnny.chen at apple.com
Thu Apr 26 22:27:07 PDT 2012


Author: johnny
Date: Fri Apr 27 00:27:07 2012
New Revision: 155694

URL: http://llvm.org/viewvc/llvm-project?rev=155694&view=rev
Log:
Clarify "watchpoint set" help text.

rdar://problem/11327790

Modified:
    lldb/trunk/source/Commands/CommandObjectWatchpoint.cpp

Modified: lldb/trunk/source/Commands/CommandObjectWatchpoint.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectWatchpoint.cpp?rev=155694&r1=155693&r2=155694&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectWatchpoint.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectWatchpoint.cpp Fri Apr 27 00:27:07 2012
@@ -885,7 +885,9 @@
                    "If no '-w' option is specified, it defaults to read_write. "
                    "If no '-x' option is specified, it defaults to the variable's "
                    "byte size. "
-                   "Note that hardware resources for watching are often limited.",
+                   "Note that there are limited hardware resources for watchpoints. "
+                   "If watchpoint setting fails, consider disable/delete existing ones "
+                   "to free up resources.",
                    NULL,
                    eFlagProcessMustBeLaunched | eFlagProcessMustBePaused),
     m_option_group (interpreter),
@@ -1036,7 +1038,9 @@
                    "If no '-w' option is specified, it defaults to read_write. "
                    "If no '-x' option is specified, it defaults to the target's "
                    "pointer byte size. "
-                   "Note that hardware resources for watching are often limited.",
+                   "Note that there are limited hardware resources for watchpoints. "
+                   "If watchpoint setting fails, consider disable/delete existing ones "
+                   "to free up resources.",
                    NULL,
                    eFlagProcessMustBeLaunched | eFlagProcessMustBePaused),
     m_option_group (interpreter),





More information about the lldb-commits mailing list