Move the "status" command to "process status" since that's where it belongs.  Also make it print "running" if invoked 
when the current process is running.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@106265 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/driver/Driver.cpp b/tools/driver/Driver.cpp
index 112678b..4afe254 100644
--- a/tools/driver/Driver.cpp
+++ b/tools/driver/Driver.cpp
@@ -775,7 +775,7 @@
             break;
 
         case eStateExited:
-            SBDebugger::HandleCommand("status");
+            SBDebugger::HandleCommand("process status");
             m_io_channel_ap->RefreshPrompt();
             break;
 
@@ -794,7 +794,7 @@
             else
             {
                 UpdateCurrentThread ();
-                SBDebugger::HandleCommand("status");
+                SBDebugger::HandleCommand("process status");
                 m_io_channel_ap->RefreshPrompt();
             }
             break;