[Lldb-commits] [lldb] r122464 - /lldb/trunk/source/Commands/CommandObjectFrame.cpp

Jim Ingham jingham at apple.com
Wed Dec 22 18:17:54 PST 2010


Author: jingham
Date: Wed Dec 22 20:17:54 2010
New Revision: 122464

URL: http://llvm.org/viewvc/llvm-project?rev=122464&view=rev
Log:
"frame variable" requires that the process be running and paused or there aren't any frames...  So mark the  command properly as such.

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

Modified: lldb/trunk/source/Commands/CommandObjectFrame.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectFrame.cpp?rev=122464&r1=122463&r2=122464&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectFrame.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectFrame.cpp Wed Dec 22 20:17:54 2010
@@ -405,7 +405,8 @@
                        "argument, local, file static and file global variables. "
                        "Children of aggregate variables can be specified such as "
                        "'var->child.x'.",
-                       NULL)
+                       NULL,
+                       eFlagProcessMustBeLaunched | eFlagProcessMustBePaused)
     {
         CommandArgumentEntry arg;
         CommandArgumentData var_name_arg;





More information about the lldb-commits mailing list