forked from qt-creator/qt-creator
debugger: refactoring of AbstractGdbAdapter
remove shutdownInferior(), rename shutdownAdapter() into shutdown()
This commit is contained in:
@@ -59,13 +59,16 @@ public:
|
||||
void setWorkingDirectory(const QString &dir) { m_gdbProc.setWorkingDirectory(dir); }
|
||||
void setEnvironment(const QStringList &env) { m_gdbProc.setEnvironment(env); }
|
||||
bool isAdapter() const { return false; }
|
||||
void interruptInferior();
|
||||
|
||||
void startAdapter(const DebuggerStartParametersPtr &sp);
|
||||
void prepareInferior();
|
||||
void startInferior();
|
||||
void shutdownInferior();
|
||||
void shutdownAdapter();
|
||||
void interruptInferior();
|
||||
void shutdown();
|
||||
|
||||
void readUploadStandardOutput();
|
||||
void readUploadStandardError();
|
||||
void uploadProcError(QProcess::ProcessError error);
|
||||
|
||||
private:
|
||||
void handleFileExecAndSymbols(const GdbResultRecord &, const QVariant &);
|
||||
@@ -79,6 +82,7 @@ private:
|
||||
|
||||
QProcess m_gdbProc;
|
||||
DebuggerStartParametersPtr m_startParameters;
|
||||
QProcess m_uploadProc;
|
||||
};
|
||||
|
||||
} // namespace Internal
|
||||
|
||||
Reference in New Issue
Block a user