2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2009-09-23 13:37:39 +02:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2009-09-23 13:37:39 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2009-09-23 13:37:39 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2015-01-14 18:07:15 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-01 13:21:18 +02:00
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2009-09-23 13:37:39 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2012-10-02 09:12:39 +02:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2009-09-23 13:37:39 +02:00
|
|
|
|
|
|
|
|
#include "coregdbadapter.h"
|
2010-11-10 16:33:11 +01:00
|
|
|
|
2014-11-25 13:08:18 +01:00
|
|
|
#include <coreplugin/messagebox.h>
|
|
|
|
|
|
2013-08-29 16:36:42 +02:00
|
|
|
#include <debugger/debuggercore.h>
|
|
|
|
|
#include <debugger/debuggerprotocol.h>
|
|
|
|
|
#include <debugger/debuggerstartparameters.h>
|
|
|
|
|
#include <debugger/debuggerstringutils.h>
|
2009-09-23 13:37:39 +02:00
|
|
|
|
2014-07-24 11:56:40 +02:00
|
|
|
#include <utils/fileutils.h>
|
2012-06-06 16:08:59 +02:00
|
|
|
#include <utils/qtcassert.h>
|
2009-09-23 13:37:39 +02:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QDir>
|
2012-06-06 16:08:59 +02:00
|
|
|
#include <QTemporaryFile>
|
2009-09-23 13:37:39 +02:00
|
|
|
|
2012-06-05 19:55:32 +02:00
|
|
|
using namespace Utils;
|
|
|
|
|
|
2009-09-23 13:37:39 +02:00
|
|
|
namespace Debugger {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2015-02-05 22:46:09 +01:00
|
|
|
#define CB(callback) [this](const DebuggerResponse &r) { callback(r); }
|
2015-09-16 10:37:47 +02:00
|
|
|
#define CHECK_STATE(s) do { checkState(s, __FILE__, __LINE__); } while (0)
|
2009-09-23 13:37:39 +02:00
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// CoreGdbAdapter
|
|
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2015-05-27 13:59:56 +02:00
|
|
|
GdbCoreEngine::GdbCoreEngine(const DebuggerRunParameters &startParameters)
|
2013-06-09 09:05:47 +03:00
|
|
|
: GdbEngine(startParameters),
|
|
|
|
|
m_coreUnpackProcess(0)
|
2010-07-15 13:23:44 +02:00
|
|
|
{}
|
|
|
|
|
|
2012-06-13 10:15:56 +02:00
|
|
|
GdbCoreEngine::~GdbCoreEngine()
|
2012-06-06 16:08:59 +02:00
|
|
|
{
|
2013-06-09 09:05:47 +03:00
|
|
|
if (m_coreUnpackProcess) {
|
|
|
|
|
m_coreUnpackProcess->blockSignals(true);
|
|
|
|
|
m_coreUnpackProcess->terminate();
|
|
|
|
|
m_coreUnpackProcess->deleteLater();
|
|
|
|
|
m_coreUnpackProcess = 0;
|
2013-06-09 09:27:38 +03:00
|
|
|
if (m_tempCoreFile.isOpen())
|
|
|
|
|
m_tempCoreFile.close();
|
2013-06-09 09:05:47 +03:00
|
|
|
}
|
|
|
|
|
if (!m_tempCoreName.isEmpty()) {
|
2012-06-06 16:08:59 +02:00
|
|
|
QFile tmpFile(m_tempCoreName);
|
|
|
|
|
tmpFile.remove();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-13 10:15:56 +02:00
|
|
|
void GdbCoreEngine::setupEngine()
|
2009-09-23 13:37:39 +02:00
|
|
|
{
|
2010-07-09 17:07:59 +02:00
|
|
|
QTC_ASSERT(state() == EngineSetupRequested, qDebug() << state());
|
2010-06-14 18:19:02 +02:00
|
|
|
showMessage(_("TRYING TO START ADAPTER"));
|
2009-09-23 13:37:39 +02:00
|
|
|
|
2015-05-27 13:59:56 +02:00
|
|
|
const DebuggerRunParameters &rp = runParameters();
|
|
|
|
|
m_executable = rp.executable;
|
|
|
|
|
QFileInfo fi(rp.coreFile);
|
2012-06-06 16:08:59 +02:00
|
|
|
m_coreName = fi.absoluteFilePath();
|
|
|
|
|
|
|
|
|
|
unpackCoreIfNeeded();
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-24 11:56:40 +02:00
|
|
|
static QString findExecutableFromName(const QString &fileNameFromCore, const QString &coreFile)
|
2012-08-23 18:42:45 +02:00
|
|
|
{
|
2014-07-24 11:56:40 +02:00
|
|
|
if (QFileInfo(fileNameFromCore).isFile())
|
|
|
|
|
return fileNameFromCore;
|
|
|
|
|
if (fileNameFromCore.isEmpty())
|
|
|
|
|
return QString();
|
|
|
|
|
|
|
|
|
|
// turn the filename into an absolute path, using the location of the core as a hint
|
|
|
|
|
QString absPath;
|
|
|
|
|
QFileInfo fi(fileNameFromCore);
|
|
|
|
|
if (fi.isAbsolute()) {
|
|
|
|
|
absPath = fileNameFromCore;
|
|
|
|
|
} else {
|
|
|
|
|
QFileInfo coreInfo(coreFile);
|
|
|
|
|
QDir coreDir = coreInfo.dir();
|
|
|
|
|
absPath = FileUtils::resolvePath(coreDir.absolutePath(), fileNameFromCore);
|
|
|
|
|
}
|
|
|
|
|
if (QFileInfo(absPath).isFile() || absPath.isEmpty())
|
|
|
|
|
return absPath;
|
|
|
|
|
|
|
|
|
|
// remove possible trailing arguments
|
|
|
|
|
QLatin1Char sep(' ');
|
|
|
|
|
QStringList pathFragments = absPath.split(sep);
|
|
|
|
|
while (pathFragments.size() > 0) {
|
|
|
|
|
QString joined_path = pathFragments.join(sep);
|
|
|
|
|
if (QFileInfo(joined_path).isFile()) {
|
|
|
|
|
return joined_path;
|
|
|
|
|
}
|
|
|
|
|
pathFragments.pop_back();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GdbCoreEngine::CoreInfo
|
|
|
|
|
GdbCoreEngine::readExecutableNameFromCore(const QString &debuggerCommand, const QString &coreFile)
|
|
|
|
|
{
|
|
|
|
|
CoreInfo cinfo;
|
2012-08-23 18:42:45 +02:00
|
|
|
#if 0
|
2014-07-24 11:56:40 +02:00
|
|
|
ElfReader reader(coreFile);
|
|
|
|
|
cinfo.rawStringFromCore = QString::fromLocal8Bit(reader.readCoreName(&cinfo.isCore));
|
|
|
|
|
cinfo.foundExecutableName = findExecutableFromName(cinfo.rawStringFromCore, coreFile);
|
2012-08-23 18:42:45 +02:00
|
|
|
#else
|
|
|
|
|
QStringList args;
|
|
|
|
|
args.append(QLatin1String("-nx"));
|
|
|
|
|
args.append(QLatin1String("-batch"));
|
|
|
|
|
args.append(QLatin1String("-c"));
|
2014-02-10 13:53:24 +01:00
|
|
|
args.append(coreFile);
|
2014-07-22 15:55:22 +02:00
|
|
|
|
2012-08-23 18:42:45 +02:00
|
|
|
QProcess proc;
|
2014-07-22 15:55:22 +02:00
|
|
|
QStringList envLang = QProcess::systemEnvironment();
|
|
|
|
|
envLang.replaceInStrings(QRegExp(QLatin1String("^LC_ALL=.*")), QLatin1String("LC_ALL=C"));
|
|
|
|
|
proc.setEnvironment(envLang);
|
2014-02-10 13:53:24 +01:00
|
|
|
proc.start(debuggerCommand, args);
|
2014-07-22 15:55:22 +02:00
|
|
|
|
2012-08-23 18:42:45 +02:00
|
|
|
if (proc.waitForFinished()) {
|
|
|
|
|
QByteArray ba = proc.readAllStandardOutput();
|
|
|
|
|
// Core was generated by `/data/dev/creator-2.6/bin/qtcreator'.
|
|
|
|
|
// Program terminated with signal 11, Segmentation fault.
|
|
|
|
|
int pos1 = ba.indexOf("Core was generated by");
|
|
|
|
|
if (pos1 != -1) {
|
|
|
|
|
pos1 += 23;
|
|
|
|
|
int pos2 = ba.indexOf('\'', pos1);
|
|
|
|
|
if (pos2 != -1) {
|
2014-07-24 11:56:40 +02:00
|
|
|
cinfo.isCore = true;
|
|
|
|
|
cinfo.rawStringFromCore = QString::fromLocal8Bit(ba.mid(pos1, pos2 - pos1));
|
|
|
|
|
cinfo.foundExecutableName = findExecutableFromName(cinfo.rawStringFromCore, coreFile);
|
2012-08-23 18:42:45 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2014-07-24 11:56:40 +02:00
|
|
|
return cinfo;
|
2012-08-23 18:42:45 +02:00
|
|
|
}
|
|
|
|
|
|
2012-06-13 10:15:56 +02:00
|
|
|
void GdbCoreEngine::continueSetupEngine()
|
2012-06-06 16:08:59 +02:00
|
|
|
{
|
2013-06-09 09:05:47 +03:00
|
|
|
bool isCore = true;
|
|
|
|
|
if (m_coreUnpackProcess) {
|
|
|
|
|
isCore = m_coreUnpackProcess->exitCode() == 0;
|
|
|
|
|
m_coreUnpackProcess->deleteLater();
|
|
|
|
|
m_coreUnpackProcess = 0;
|
2013-06-09 09:27:38 +03:00
|
|
|
if (m_tempCoreFile.isOpen())
|
|
|
|
|
m_tempCoreFile.close();
|
2013-06-09 09:05:47 +03:00
|
|
|
}
|
|
|
|
|
if (isCore && m_executable.isEmpty()) {
|
2014-07-24 11:56:40 +02:00
|
|
|
GdbCoreEngine::CoreInfo cinfo = readExecutableNameFromCore(
|
2015-05-27 13:59:56 +02:00
|
|
|
runParameters().debuggerCommand,
|
2014-07-24 11:56:40 +02:00
|
|
|
coreFileName());
|
|
|
|
|
|
|
|
|
|
if (cinfo.isCore) {
|
|
|
|
|
m_executable = cinfo.foundExecutableName;
|
2013-06-09 09:05:47 +03:00
|
|
|
if (m_executable.isEmpty()) {
|
2014-11-25 13:08:18 +01:00
|
|
|
Core::AsynchronousMessageBox::warning(
|
2013-06-09 09:05:47 +03:00
|
|
|
tr("Error Loading Symbols"),
|
|
|
|
|
tr("No executable to load symbols from specified core."));
|
|
|
|
|
notifyEngineSetupFailed();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2012-06-05 19:55:32 +02:00
|
|
|
}
|
|
|
|
|
}
|
2013-07-17 00:01:45 +03:00
|
|
|
if (isCore) {
|
2013-06-09 09:05:47 +03:00
|
|
|
startGdb();
|
2013-07-17 00:01:45 +03:00
|
|
|
} else {
|
2014-11-25 13:08:18 +01:00
|
|
|
Core::AsynchronousMessageBox::warning(
|
2013-06-09 09:05:47 +03:00
|
|
|
tr("Error Loading Core File"),
|
|
|
|
|
tr("The specified file does not appear to be a core file."));
|
|
|
|
|
notifyEngineSetupFailed();
|
|
|
|
|
}
|
2012-06-05 11:05:58 +02:00
|
|
|
}
|
2009-09-23 13:37:39 +02:00
|
|
|
|
2013-06-09 09:27:38 +03:00
|
|
|
void GdbCoreEngine::writeCoreChunk()
|
|
|
|
|
{
|
|
|
|
|
m_tempCoreFile.write(m_coreUnpackProcess->readAll());
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-13 10:15:56 +02:00
|
|
|
void GdbCoreEngine::setupInferior()
|
2009-10-05 13:47:55 +02:00
|
|
|
{
|
2015-09-16 10:37:47 +02:00
|
|
|
CHECK_STATE(InferiorSetupRequested);
|
2009-10-20 18:05:56 +02:00
|
|
|
// Do that first, otherwise no symbols are loaded.
|
|
|
|
|
QFileInfo fi(m_executable);
|
2010-01-05 16:51:55 +01:00
|
|
|
QByteArray path = fi.absoluteFilePath().toLocal8Bit();
|
2015-02-06 01:26:47 +01:00
|
|
|
postCommand("-file-exec-and-symbols \"" + path + '"', NoFlags,
|
2010-01-05 16:51:55 +01:00
|
|
|
CB(handleFileExecAndSymbols));
|
2009-09-23 13:37:39 +02:00
|
|
|
}
|
|
|
|
|
|
2015-02-05 15:47:07 +01:00
|
|
|
void GdbCoreEngine::handleFileExecAndSymbols(const DebuggerResponse &response)
|
2009-09-30 12:27:03 +02:00
|
|
|
{
|
2015-09-16 10:37:47 +02:00
|
|
|
CHECK_STATE(InferiorSetupRequested);
|
2012-06-06 16:08:59 +02:00
|
|
|
QString core = coreFileName();
|
2015-02-05 15:47:07 +01:00
|
|
|
if (response.resultClass == ResultDone) {
|
2010-06-14 18:19:02 +02:00
|
|
|
showMessage(tr("Symbols found."), StatusBar);
|
2015-02-26 15:04:02 +01:00
|
|
|
handleInferiorPrepared();
|
|
|
|
|
} else {
|
|
|
|
|
QString msg = tr("No symbols found in core file <i>%1</i>.").arg(core)
|
|
|
|
|
+ _(" ") + tr("This can be caused by a path length limitation "
|
|
|
|
|
"in the core file.")
|
|
|
|
|
+ _(" ") + tr("Try to specify the binary using the "
|
|
|
|
|
"<i>Debug->Start Debugging->Attach to Core</i> dialog.");
|
|
|
|
|
notifyInferiorSetupFailed(msg);
|
2009-09-30 12:27:03 +02:00
|
|
|
}
|
2015-02-26 15:04:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GdbCoreEngine::runEngine()
|
|
|
|
|
{
|
2015-09-16 10:37:47 +02:00
|
|
|
CHECK_STATE(EngineRunRequested);
|
2015-02-26 15:04:02 +01:00
|
|
|
postCommand("target core " + coreFileName().toLocal8Bit(), NoFlags, CB(handleTargetCore));
|
2009-10-20 18:05:56 +02:00
|
|
|
}
|
|
|
|
|
|
2015-02-05 15:47:07 +01:00
|
|
|
void GdbCoreEngine::handleTargetCore(const DebuggerResponse &response)
|
2009-10-05 13:47:55 +02:00
|
|
|
{
|
2015-09-16 10:37:47 +02:00
|
|
|
CHECK_STATE(EngineRunRequested);
|
2015-02-26 15:21:43 +01:00
|
|
|
notifyEngineRunOkAndInferiorUnrunnable();
|
2015-02-05 15:47:07 +01:00
|
|
|
if (response.resultClass == ResultDone) {
|
2010-06-14 18:19:02 +02:00
|
|
|
showMessage(tr("Attached to core."), StatusBar);
|
2010-12-21 14:41:17 +01:00
|
|
|
// Due to the auto-solib-add off setting, we don't have any
|
|
|
|
|
// symbols yet. Load them in order of importance.
|
2015-02-06 01:26:47 +01:00
|
|
|
reloadStack();
|
2012-06-13 10:15:56 +02:00
|
|
|
reloadModulesInternal();
|
2015-02-06 01:26:47 +01:00
|
|
|
postCommand("p 5", NoFlags, CB(handleRoundTrip));
|
2010-07-15 13:23:44 +02:00
|
|
|
return;
|
2009-10-05 13:47:55 +02:00
|
|
|
}
|
2015-05-27 13:59:56 +02:00
|
|
|
showStatusMessage(tr("Attach to core \"%1\" failed:").arg(runParameters().coreFile)
|
2015-02-26 15:04:02 +01:00
|
|
|
+ QLatin1Char('\n') + QString::fromLocal8Bit(response.data["msg"].data()));
|
|
|
|
|
notifyEngineIll();
|
2009-10-05 13:47:55 +02:00
|
|
|
}
|
2009-10-20 11:02:16 +02:00
|
|
|
|
2015-02-05 15:47:07 +01:00
|
|
|
void GdbCoreEngine::handleRoundTrip(const DebuggerResponse &response)
|
2010-12-21 14:41:17 +01:00
|
|
|
{
|
2015-09-16 10:37:47 +02:00
|
|
|
CHECK_STATE(InferiorUnrunnable);
|
2012-06-13 10:15:56 +02:00
|
|
|
Q_UNUSED(response);
|
2010-12-21 14:41:17 +01:00
|
|
|
loadSymbolsForStack();
|
2015-02-26 15:04:02 +01:00
|
|
|
handleStop2();
|
2010-12-21 14:41:17 +01:00
|
|
|
QTimer::singleShot(1000, this, SLOT(loadAllSymbols()));
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-13 10:15:56 +02:00
|
|
|
void GdbCoreEngine::interruptInferior()
|
2009-09-23 13:37:39 +02:00
|
|
|
{
|
2010-07-09 17:07:59 +02:00
|
|
|
// A core never runs, so this cannot be called.
|
2011-07-29 12:00:11 +02:00
|
|
|
QTC_CHECK(false);
|
2009-09-23 13:37:39 +02:00
|
|
|
}
|
|
|
|
|
|
2012-06-13 10:15:56 +02:00
|
|
|
void GdbCoreEngine::shutdownEngine()
|
2010-07-09 17:07:59 +02:00
|
|
|
{
|
2012-06-13 10:15:56 +02:00
|
|
|
notifyAdapterShutdownOk();
|
2010-07-09 17:07:59 +02:00
|
|
|
}
|
|
|
|
|
|
2013-06-09 09:27:38 +03:00
|
|
|
static QString tempCoreFilename()
|
|
|
|
|
{
|
|
|
|
|
QString pattern = QDir::tempPath() + QLatin1String("/tmpcore-XXXXXX");
|
|
|
|
|
QTemporaryFile tmp(pattern);
|
|
|
|
|
tmp.open();
|
|
|
|
|
return tmp.fileName();
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-13 10:15:56 +02:00
|
|
|
void GdbCoreEngine::unpackCoreIfNeeded()
|
2010-07-09 17:07:59 +02:00
|
|
|
{
|
2013-06-09 09:27:38 +03:00
|
|
|
QStringList arguments;
|
|
|
|
|
const QString msg = _("Unpacking core file to %1");
|
|
|
|
|
if (m_coreName.endsWith(QLatin1String(".lzo"))) {
|
|
|
|
|
m_tempCoreName = tempCoreFilename();
|
|
|
|
|
showMessage(msg.arg(m_tempCoreName));
|
|
|
|
|
arguments << QLatin1String("-o") << m_tempCoreName << QLatin1String("-x") << m_coreName;
|
|
|
|
|
m_coreUnpackProcess = new QProcess(this);
|
|
|
|
|
m_coreUnpackProcess->setWorkingDirectory(QDir::tempPath());
|
|
|
|
|
m_coreUnpackProcess->start(QLatin1String("lzop"), arguments);
|
2015-01-29 18:37:56 +01:00
|
|
|
connect(m_coreUnpackProcess, static_cast<void (QProcess::*)(int)>(&QProcess::finished),
|
|
|
|
|
this, &GdbCoreEngine::continueSetupEngine);
|
2013-06-09 09:27:38 +03:00
|
|
|
} else if (m_coreName.endsWith(QLatin1String(".gz"))) {
|
|
|
|
|
m_tempCoreName = tempCoreFilename();
|
|
|
|
|
showMessage(msg.arg(m_tempCoreName));
|
|
|
|
|
m_tempCoreFile.setFileName(m_tempCoreName);
|
|
|
|
|
m_tempCoreFile.open(QFile::WriteOnly);
|
|
|
|
|
arguments << QLatin1String("-c") << QLatin1String("-d") << m_coreName;
|
|
|
|
|
m_coreUnpackProcess = new QProcess(this);
|
|
|
|
|
m_coreUnpackProcess->setWorkingDirectory(QDir::tempPath());
|
|
|
|
|
m_coreUnpackProcess->start(QLatin1String("gzip"), arguments);
|
2015-01-29 18:37:56 +01:00
|
|
|
connect(m_coreUnpackProcess, &QProcess::readyRead, this, &GdbCoreEngine::writeCoreChunk);
|
|
|
|
|
connect(m_coreUnpackProcess, static_cast<void (QProcess::*)(int)>(&QProcess::finished),
|
|
|
|
|
this, &GdbCoreEngine::continueSetupEngine);
|
2013-06-09 09:27:38 +03:00
|
|
|
} else {
|
2012-06-13 10:15:56 +02:00
|
|
|
continueSetupEngine();
|
2012-06-06 16:08:59 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-13 10:15:56 +02:00
|
|
|
QString GdbCoreEngine::coreFileName() const
|
2012-06-06 16:08:59 +02:00
|
|
|
{
|
|
|
|
|
return m_tempCoreName.isEmpty() ? m_coreName : m_tempCoreName;
|
2010-07-09 17:07:59 +02:00
|
|
|
}
|
|
|
|
|
|
2009-09-23 13:37:39 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Debugger
|