Remove a few debug printf's that were left in ProcessKDP.
authorJason Molenda <jmolenda@apple.com>
Thu, 4 Oct 2012 02:06:30 +0000 (02:06 +0000)
committerJason Molenda <jmolenda@apple.com>
Thu, 4 Oct 2012 02:06:30 +0000 (02:06 +0000)
llvm-svn: 165192

lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp

index 88b93f1..8f7021a 100644 (file)
@@ -255,13 +255,11 @@ ProcessKDP::DoConnectRemote (Stream *strm, const char *remote_url)
                 }
                 else
                 {
-                    puts ("KDP_CONNECT failed"); // REMOVE THIS
                     error.SetErrorString("KDP_REATTACH failed");
                 }
             }
             else
             {
-                puts ("KDP_REATTACH failed"); // REMOVE THIS
                 error.SetErrorString("KDP_REATTACH failed");
             }
         }
@@ -372,17 +370,14 @@ ProcessKDP::DoResume ()
             case eStateSuspended:
                 // Nothing to do here when a thread will stay suspended
                 // we just leave the CPU mask bit set to zero for the thread
-                puts("REMOVE THIS: ProcessKDP::DoResume () -- thread suspended");
                 break;
                 
             case eStateStepping:
-                puts("REMOVE THIS: ProcessKDP::DoResume () -- thread stepping");
                 kernel_thread_sp->GetRegisterContext()->HardwareSingleStep (true);
                 resume = true;
                 break;
     
             case eStateRunning:
-                puts("REMOVE THIS: ProcessKDP::DoResume () -- thread running");
                 kernel_thread_sp->GetRegisterContext()->HardwareSingleStep (false);
                 resume = true;
                 break;