init
This commit is contained in:
15
src/runner/debugger.hpp
Normal file
15
src/runner/debugger.hpp
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
#include <thread>
|
||||
|
||||
class debugger
|
||||
{
|
||||
public:
|
||||
debugger(unsigned long process_id, bool start);
|
||||
~debugger();
|
||||
|
||||
private:
|
||||
volatile bool terminate_ = false;
|
||||
std::thread runner_;
|
||||
|
||||
void run(unsigned long process_id) const;
|
||||
};
|
Reference in New Issue
Block a user