aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectWatchpoint.cpp
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2012-04-27 05:27:07 +0000
committerJohnny Chen <johnny.chen@apple.com>2012-04-27 05:27:07 +0000
commitbd5bb6fda3e5aff55a190de14fe03770b5a50a22 (patch)
treebc204f868319cec1b3b8b7e4d93b1834b3a74cbf /lldb/source/Commands/CommandObjectWatchpoint.cpp
parent2964aac03b250dadbc1ed14a4d7d170093452c2f (diff)
downloadllvm-bd5bb6fda3e5aff55a190de14fe03770b5a50a22.zip
llvm-bd5bb6fda3e5aff55a190de14fe03770b5a50a22.tar.gz
llvm-bd5bb6fda3e5aff55a190de14fe03770b5a50a22.tar.bz2
Clarify "watchpoint set" help text.
rdar://problem/11327790 llvm-svn: 155694
Diffstat (limited to 'lldb/source/Commands/CommandObjectWatchpoint.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectWatchpoint.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectWatchpoint.cpp b/lldb/source/Commands/CommandObjectWatchpoint.cpp
index ce6b71e..8387cb6 100644
--- a/lldb/source/Commands/CommandObjectWatchpoint.cpp
+++ b/lldb/source/Commands/CommandObjectWatchpoint.cpp
@@ -885,7 +885,9 @@ CommandObjectWatchpointSetVariable::CommandObjectWatchpointSetVariable (CommandI
"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 @@ CommandObjectWatchpointSetExpression::CommandObjectWatchpointSetExpression (Comm
"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),