Home
last modified time | relevance | path

Searched refs:POSIXLimboStopInfo (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/lldb/source/Plugins/Process/FreeBSD/
DPOSIXStopInfo.cpp17 POSIXLimboStopInfo::~POSIXLimboStopInfo() {} in ~POSIXLimboStopInfo()
19 lldb::StopReason POSIXLimboStopInfo::GetStopReason() const { in GetStopReason()
23 const char *POSIXLimboStopInfo::GetDescription() { return "thread exiting"; } in GetDescription()
25 bool POSIXLimboStopInfo::ShouldStop(Event *event_ptr) { return false; } in ShouldStop()
27 bool POSIXLimboStopInfo::ShouldNotify(Event *event_ptr) { return false; } in ShouldNotify()
DPOSIXStopInfo.h31 class POSIXLimboStopInfo : public POSIXStopInfo {
33 POSIXLimboStopInfo(FreeBSDThread &thread) : POSIXStopInfo(thread, 0) {} in POSIXLimboStopInfo() function
35 ~POSIXLimboStopInfo();
DFreeBSDThread.cpp545 SetStopInfo(lldb::StopInfoSP(new POSIXLimboStopInfo(*this))); in LimboNotify()