[Lldb-commits] [lldb] r230944 - Rename CMIDriver::LocalDebugSessionStartupInjectCommands to CMIDriver::LocalDebugSessionStartupExecuteCommands after r230003
Ilia K
ki.stfu at gmail.com
Mon Mar 2 02:58:03 PST 2015
Author: ki.stfu
Date: Mon Mar 2 04:58:02 2015
New Revision: 230944
URL: http://llvm.org/viewvc/llvm-project?rev=230944&view=rev
Log:
Rename CMIDriver::LocalDebugSessionStartupInjectCommands to CMIDriver::LocalDebugSessionStartupExecuteCommands after r230003
Modified:
lldb/trunk/tools/lldb-mi/MIDriver.cpp
lldb/trunk/tools/lldb-mi/MIDriver.h
Modified: lldb/trunk/tools/lldb-mi/MIDriver.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/lldb-mi/MIDriver.cpp?rev=230944&r1=230943&r2=230944&view=diff
==============================================================================
--- lldb/trunk/tools/lldb-mi/MIDriver.cpp (original)
+++ lldb/trunk/tools/lldb-mi/MIDriver.cpp Mon Mar 2 04:58:02 2015
@@ -570,7 +570,7 @@ CMIDriver::DoMainLoop(void)
#if MICONFIG_ENABLE_MI_DRIVER_MI_MODE_CMDLINE_ARG_EXECUTABLE_DEBUG_SESSION
if (HaveExecutableFileNamePathOnCmdLine())
{
- if (!LocalDebugSessionStartupInjectCommands())
+ if (!LocalDebugSessionStartupExecuteCommands())
{
SetErrorDescription(MIRSRC(IDS_MI_INIT_ERR_LOCAL_DEBUG_SESSION));
return MIstatus::failure;
@@ -1170,7 +1170,7 @@ CMIDriver::GetExecutableFileNamePathOnCm
// Throws: None.
//--
bool
-CMIDriver::LocalDebugSessionStartupInjectCommands(void)
+CMIDriver::LocalDebugSessionStartupExecuteCommands(void)
{
const CMIUtilString strCmd(CMIUtilString::Format("-file-exec-and-symbols \"%s\"", m_strCmdLineArgExecuteableFileNamePath.AddSlashes().c_str()));
const bool bOk = CMICmnStreamStdout::TextToStdout(strCmd);
Modified: lldb/trunk/tools/lldb-mi/MIDriver.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/lldb-mi/MIDriver.h?rev=230944&r1=230943&r2=230944&view=diff
==============================================================================
--- lldb/trunk/tools/lldb-mi/MIDriver.h (original)
+++ lldb/trunk/tools/lldb-mi/MIDriver.h Mon Mar 2 04:58:02 2015
@@ -148,7 +148,7 @@ class CMIDriver : public CMICmnBase,
bool StopWorkerThreads(void);
bool InitClientIDEToMIDriver(void) const;
bool InitClientIDEEclipse(void) const;
- bool LocalDebugSessionStartupInjectCommands(void);
+ bool LocalDebugSessionStartupExecuteCommands(void);
// Overridden:
private:
More information about the lldb-commits
mailing list