diff options
Diffstat (limited to 'lldb/source/Plugins/Process/Linux/LinuxStopInfo.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/Linux/LinuxStopInfo.cpp | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/lldb/source/Plugins/Process/Linux/LinuxStopInfo.cpp b/lldb/source/Plugins/Process/Linux/LinuxStopInfo.cpp index 5bcafbd5072..e69de29bb2d 100644 --- a/lldb/source/Plugins/Process/Linux/LinuxStopInfo.cpp +++ b/lldb/source/Plugins/Process/Linux/LinuxStopInfo.cpp @@ -1,60 +0,0 @@ -//===-- LinuxStopInfo.cpp ---------------------------------------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#include "LinuxStopInfo.h" - -using namespace lldb; -using namespace lldb_private; - - -//===----------------------------------------------------------------------===// -// LinuxLimboStopInfo - -LinuxLimboStopInfo::~LinuxLimboStopInfo() { } - -lldb::StopReason -LinuxLimboStopInfo::GetStopReason() const -{ - return lldb::eStopReasonTrace; -} - -const char * -LinuxLimboStopInfo::GetDescription() -{ - return "thread exiting"; -} - -bool -LinuxLimboStopInfo::ShouldStop(Event *event_ptr) -{ - return true; -} - -bool -LinuxLimboStopInfo::ShouldNotify(Event *event_ptr) -{ - return true; -} - -//===----------------------------------------------------------------------===// -// LinuxCrashStopInfo - -LinuxCrashStopInfo::~LinuxCrashStopInfo() { } - -lldb::StopReason -LinuxCrashStopInfo::GetStopReason() const -{ - return lldb::eStopReasonException; -} - -const char * -LinuxCrashStopInfo::GetDescription() -{ - return ProcessMessage::GetCrashReasonString(m_crash_reason); -} |