aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerplugin.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2009-05-26 16:27:24 +0200
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2009-05-26 16:27:24 +0200
commit09380afe90ff64119425371c8bf83fc1e8612c38 (patch)
tree421700a1ff613c5faf0ec3679ed3059305153bf2 /src/plugins/debugger/debuggerplugin.h
parentaf4fcde1c2a17276f2d7b360c19a0493a78b4a0e (diff)
Get attaching to a crashed Windows process right (CDB).
Handle the 2nd parameter correctly as a event id to be used for a handshake. Introduce a special mode when attaching to crashed processes. Code cleanup, pass StartParameters along to startDebugger.
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.h')
-rw-r--r--src/plugins/debugger/debuggerplugin.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/debugger/debuggerplugin.h b/src/plugins/debugger/debuggerplugin.h
index 082a01e016..7fdf3b0899 100644
--- a/src/plugins/debugger/debuggerplugin.h
+++ b/src/plugins/debugger/debuggerplugin.h
@@ -115,7 +115,7 @@ private:
inline bool parseArgument(QStringList::const_iterator &it,
const QStringList::const_iterator& end,
QString *errorMessage);
- void attachExternalApplication(qint64 pid);
+ void attachExternalApplication(qint64 pid, const QString &crashParameter = QString());
friend class DebuggerManager;
friend class GdbOptionPage;
@@ -131,8 +131,8 @@ private:
int m_gdbRunningContext;
unsigned m_cmdLineEnabledEngines;
quint64 m_cmdLineAttachPid;
- // Exception that crashed an app passed on by Windows
- unsigned long m_cmdLineWinException;
+ // Event handle for attaching to crashed Windows processes.
+ quint64 m_cmdLineWinCrashEvent;
QAction *m_toggleLockedAction;
QAction *m_startExternalAction;