diff options
author | Jim Ingham <jingham@apple.com> | 2013-05-29 19:40:14 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2013-05-29 19:40:14 +0000 |
commit | cbf7e26b3b9758c246793aba5ec72ce4d43216fd (patch) | |
tree | ff3b063afe5e84878b59bc7d98833ec69f2b5762 /lldb/source/Commands/CommandObjectExpression.cpp | |
parent | b65f6b0820405929227b1d3a419d1519e9197dd6 (diff) | |
download | llvm-cbf7e26b3b9758c246793aba5ec72ce4d43216fd.zip llvm-cbf7e26b3b9758c246793aba5ec72ce4d43216fd.tar.gz llvm-cbf7e26b3b9758c246793aba5ec72ce4d43216fd.tar.bz2 |
For "expr", say what the timeout units are in the help string.
llvm-svn: 182873
Diffstat (limited to 'lldb/source/Commands/CommandObjectExpression.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectExpression.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectExpression.cpp b/lldb/source/Commands/CommandObjectExpression.cpp index c47d477..1d31c67 100644 --- a/lldb/source/Commands/CommandObjectExpression.cpp +++ b/lldb/source/Commands/CommandObjectExpression.cpp @@ -54,7 +54,7 @@ CommandObjectExpression::CommandOptions::g_option_table[] = { { LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "all-threads", 'a', required_argument, NULL, 0, eArgTypeBoolean, "Should we run all threads if the execution doesn't complete on one thread."}, { LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "ignore-breakpoints", 'i', required_argument, NULL, 0, eArgTypeBoolean, "Ignore breakpoint hits while running expressions"}, - { LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "timeout", 't', required_argument, NULL, 0, eArgTypeUnsignedInteger, "Timeout value for running the expression."}, + { LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "timeout", 't', required_argument, NULL, 0, eArgTypeUnsignedInteger, "Timeout value (in microseconds) for running the expression."}, { LLDB_OPT_SET_1 | LLDB_OPT_SET_2, false, "unwind-on-error", 'u', required_argument, NULL, 0, eArgTypeBoolean, "Clean up program state if the expression causes a crash, or raises a signal. Note, unlike gdb hitting a breakpoint is controlled by another option (-i)."}, }; |