forked from qt-creator/qt-creator
		
	Fixes: Compilation/start on handling console processes.
This commit is contained in:
		
				
					committed by
					
						
						unknown
					
				
			
			
				
	
			
			
			
						parent
						
							5dc74a98e2
						
					
				
				
					commit
					04a15daab7
				
			@@ -31,6 +31,7 @@
 | 
			
		||||
#define DEBUGGER_CDBENGINE_H
 | 
			
		||||
 | 
			
		||||
#include "idebuggerengine.h"
 | 
			
		||||
#include "debuggermanager.h"
 | 
			
		||||
 | 
			
		||||
namespace Debugger {
 | 
			
		||||
namespace Internal {
 | 
			
		||||
@@ -91,15 +92,21 @@ public:
 | 
			
		||||
 | 
			
		||||
    virtual void setDebugDumpers(bool on);
 | 
			
		||||
    virtual void setUseCustomDumpers(bool on);
 | 
			
		||||
    virtual void recheckCustomDumperAvailability();
 | 
			
		||||
 | 
			
		||||
    virtual void reloadSourceFiles();
 | 
			
		||||
 | 
			
		||||
protected:
 | 
			
		||||
    void timerEvent(QTimerEvent*);
 | 
			
		||||
 | 
			
		||||
private slots:
 | 
			
		||||
    void slotConsoleStubStarted();
 | 
			
		||||
    void slotConsoleStubError(const QString &msg);
 | 
			
		||||
    void slotConsoleStubTerminated();
 | 
			
		||||
 | 
			
		||||
private:
 | 
			
		||||
    bool startAttachDebugger(unsigned long pid, QString *errorMessage);
 | 
			
		||||
    bool startDebuggerWithExecutable(QString *errorMessage);
 | 
			
		||||
    bool startAttachDebugger(qint64 pid, QString *errorMessage);
 | 
			
		||||
    bool startDebuggerWithExecutable(DebuggerStartMode sm, QString *errorMessage);
 | 
			
		||||
    void startWatchTimer();
 | 
			
		||||
    void killWatchTimer();
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user