Skip to content

Commit

Permalink
Add proccontrol/src/handler.C
Browse files Browse the repository at this point in the history
  • Loading branch information
hainest committed Apr 3, 2024
1 parent 54bfecc commit a3ce197
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions proccontrol/src/handler.C
Original file line number Diff line number Diff line change
Expand Up @@ -1319,11 +1319,6 @@ Handler::handler_ret_t HandlePostSyscall::handleEvent(Event::ptr ev)
return ret_success;
}

/**
* This handler is triggered when a breakpoint is first hit (e.g., on
* the SIGTRAP signal. It's main purpose is to prepare the thread state
* before the user callback
**/
HandleBreakpoint::HandleBreakpoint() :
Handler("Breakpoint")
{
Expand Down Expand Up @@ -1535,9 +1530,6 @@ void HandleBreakpointClear::getEventTypesHandled(vector<EventType> &etypes)
etypes.push_back(EventType(EventType::None, EventType::BreakpointClear));
}

/**
* The handler triggers when a thread stopped on a breakpoint is continued.
**/
Handler::handler_ret_t HandleBreakpointClear::handleEvent(Event::ptr ev)
{
int_process *proc = ev->getProcess()->llproc();
Expand Down

0 comments on commit a3ce197

Please sign in to comment.