本文整理汇总了C++中UserData::getEventList方法的典型用法代码示例。如果您正苦于以下问题:C++ UserData::getEventList方法的具体用法?C++ UserData::getEventList怎么用?C++ UserData::getEventList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserData
的用法示例。
在下文中一共展示了UserData::getEventList方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: debuggerCallback
/**
* Debugger callback that handles events that are necessary for profiling.
**/
int debuggerCallback(void *user_data, int notification_code, va_list va)
{
UserData* userData = (UserData*)user_data;
IdaFile file;
Debugger debugger = file.getDebugger();
if (notification_code == Debugger::EVENT_BREAKPOINT)
{
// Get the Thread ID
thread_id_t tid = va_arg(va, thread_id_t);
// Get the address of where the breakpoint was hit
ea_t addr = va_arg(va, ea_t);
_timeb timebuffer;
_ftime64_s( &timebuffer );
userData->getEventList().addEvent(Event(addr, timebuffer));
debugger.resumeProcess(true);
}
else if (notification_code == Debugger::EVENT_PROCESS_SUSPENDED)
{
setBreakpoints();
msg("Resuming target process...\n");
debugger.resumeProcess(true);
}
else if (notification_code == Debugger::EVENT_PROCESS_EXIT)
{
handleExitProcess(userData);
}
return 0;
}