diff options
author | Jim Ingham <jingham@apple.com> | 2014-07-08 19:27:35 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2014-07-08 19:27:35 +0000 |
commit | c60b6eadecb2d41c7b7d4661dbffedff764ca8d1 (patch) | |
tree | 7b0c820a18de98d71bd7d660d8aa66b15af72d73 /lldb/source/Commands/CommandObjectExpression.cpp | |
parent | a62cffae523b91937759ca8c01a52b60fef60cb8 (diff) | |
download | llvm-c60b6eadecb2d41c7b7d4661dbffedff764ca8d1.zip llvm-c60b6eadecb2d41c7b7d4661dbffedff764ca8d1.tar.gz llvm-c60b6eadecb2d41c7b7d4661dbffedff764ca8d1.tar.bz2 |
Document the "thread.completed-expression" feature in the "expression" command help.
llvm-svn: 212558
Diffstat (limited to 'lldb/source/Commands/CommandObjectExpression.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectExpression.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectExpression.cpp b/lldb/source/Commands/CommandObjectExpression.cpp index 4a92f48..29e6f87 100644 --- a/lldb/source/Commands/CommandObjectExpression.cpp +++ b/lldb/source/Commands/CommandObjectExpression.cpp @@ -218,6 +218,15 @@ User defined variables:\n\ your user defined variable is a $, then the variable's value will be available in future\n\ expressions, otherwise it will just be available in the current expression.\n\ \n\ +\n\ +Continuing evaluation after a breakpoint:\n\ + If the \"-i false\" option is used, and execution is interrupted by a breakpoint hit, once\n\ + you are done with your investigation, you can either remove the expression execution frames\n\ + from the stack with \"thread return -x\" or if you are still interested in the expression result\n\ + you can issue the \"continue\" command and the expression evaluation will complete and the\n\ + expression result will be available using the \"thread.completed-expression\" key in the thread\n\ + format.\n\ +\n\ Examples: \n\ \n\ expr my_struct->a = my_array[3] \n\ |