Index: lldb/trunk/tools/lldb-mi/MIDriverMain.cpp =================================================================== --- lldb/trunk/tools/lldb-mi/MIDriverMain.cpp +++ lldb/trunk/tools/lldb-mi/MIDriverMain.cpp @@ -165,11 +165,7 @@ //-- int main(int argc, char const *argv[]) { #if MICONFIG_DEBUG_SHOW_ATTACH_DBG_DLG -#ifdef _WIN32 - CMIUtilDebug::ShowDlgWaitForDbgAttach(); -#else CMIUtilDebug::WaitForDbgAttachInfinteLoop(); -#endif // _WIN32 #endif // MICONFIG_DEBUG_SHOW_ATTACH_DBG_DLG llvm::StringRef ToolName = argv[0]; Index: lldb/trunk/tools/lldb-mi/MIUtilDebug.h =================================================================== --- lldb/trunk/tools/lldb-mi/MIUtilDebug.h +++ lldb/trunk/tools/lldb-mi/MIUtilDebug.h @@ -24,7 +24,6 @@ class CMIUtilDebug { // Statics: public: - static void ShowDlgWaitForDbgAttach(); static void WaitForDbgAttachInfinteLoop(); // Methods: Index: lldb/trunk/tools/lldb-mi/MIUtilDebug.cpp =================================================================== --- lldb/trunk/tools/lldb-mi/MIUtilDebug.cpp +++ lldb/trunk/tools/lldb-mi/MIUtilDebug.cpp @@ -39,25 +39,6 @@ //++ //------------------------------------------------------------------------------------ -// Details: Show a dialog to the process/application halts. It gives the -// opportunity to -// attach a debugger. -// Type: Static method. -// Args: None. -// Return: None. -// Throws: None. -//-- -void CMIUtilDebug::ShowDlgWaitForDbgAttach() { - const CMIUtilString strCaption(CMIDriver::Instance().GetAppNameShort()); -#ifdef _WIN32 - ::MessageBoxA(NULL, "Attach your debugger now", strCaption.c_str(), MB_OK); -#else -// ToDo: Implement other platform version of an Ok to continue dialog box -#endif // _WIN32 -} - -//++ -//------------------------------------------------------------------------------------ // Details: Temporarily stall the process/application to give the programmer the // opportunity to attach a debugger. How to use: Put a break in the // programmer