forked from OSchip/llvm-project
Rename CMIDriver::LocalDebugSessionStartupInjectCommands to CMIDriver::LocalDebugSessionStartupExecuteCommands after r230003
llvm-svn: 230944
This commit is contained in:
parent
1ca3b83255
commit
f1115fe0c5
|
@ -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::GetExecutableFileNamePathOnCmdLine(void) const
|
|||
// 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);
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue