1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:08:10 +00:00

LibDebug: Add ability to detach from debuggee

This commit is contained in:
Itamar 2020-09-26 11:22:58 +03:00 committed by Andreas Kling
parent 6c73fdf8d1
commit 8ce641cefc
2 changed files with 17 additions and 2 deletions

View file

@ -90,11 +90,14 @@ public:
};
void continue_debugee(ContinueType type = ContinueType::FreeRun);
//returns the wstatus result of waitpid()
// Returns the wstatus result of waitpid()
int continue_debugee_and_wait(ContinueType type = ContinueType::FreeRun);
// Returns the new eip
void* single_step();
void detach();
template<typename Callback>
void run(Callback callback);
@ -236,7 +239,11 @@ void DebugSession::run(Callback callback)
state = State::SingleStep;
}
if (decision == DebugDecision::Kill || decision == DebugDecision::Detach) {
if (decision == DebugDecision::Detach) {
detach();
break;
}
if (decision == DebugDecision::Kill) {
ASSERT_NOT_REACHED(); // TODO: implement
}