diff options
author | Kate Stone <katherine.stone@apple.com> | 2016-09-06 20:57:50 +0000 |
---|---|---|
committer | Kate Stone <katherine.stone@apple.com> | 2016-09-06 20:57:50 +0000 |
commit | b9c1b51e45b845debb76d8658edabca70ca56079 (patch) | |
tree | dfcb5a13ef2b014202340f47036da383eaee74aa /lldb/source/API/SBUnixSignals.cpp | |
parent | d5aa73376966339caad04013510626ec2e42c760 (diff) | |
download | bcm5719-llvm-b9c1b51e45b845debb76d8658edabca70ca56079.tar.gz bcm5719-llvm-b9c1b51e45b845debb76d8658edabca70ca56079.zip |
*** This commit represents a complete reformatting of the LLDB source code
*** to conform to clang-format’s LLVM style. This kind of mass change has
*** two obvious implications:
Firstly, merging this particular commit into a downstream fork may be a huge
effort. Alternatively, it may be worth merging all changes up to this commit,
performing the same reformatting operation locally, and then discarding the
merge for this particular commit. The commands used to accomplish this
reformatting were as follows (with current working directory as the root of
the repository):
find . \( -iname "*.c" -or -iname "*.cpp" -or -iname "*.h" -or -iname "*.mm" \) -exec clang-format -i {} +
find . -iname "*.py" -exec autopep8 --in-place --aggressive --aggressive {} + ;
The version of clang-format used was 3.9.0, and autopep8 was 1.2.4.
Secondly, “blame” style tools will generally point to this commit instead of
a meaningful prior commit. There are alternatives available that will attempt
to look through this change and find the appropriate prior commit. YMMV.
llvm-svn: 280751
Diffstat (limited to 'lldb/source/API/SBUnixSignals.cpp')
-rw-r--r-- | lldb/source/API/SBUnixSignals.cpp | 213 |
1 files changed, 80 insertions, 133 deletions
diff --git a/lldb/source/API/SBUnixSignals.cpp b/lldb/source/API/SBUnixSignals.cpp index 531c9782973..bb85912c23d 100644 --- a/lldb/source/API/SBUnixSignals.cpp +++ b/lldb/source/API/SBUnixSignals.cpp @@ -1,4 +1,5 @@ -//===-- SBUnixSignals.cpp -------------------------------------------*- C++ -*-===// +//===-- SBUnixSignals.cpp -------------------------------------------*- C++ +//-*-===// // // The LLVM Compiler Infrastructure // @@ -7,190 +8,136 @@ // //===----------------------------------------------------------------------===// -#include "lldb/lldb-defines.h" -#include "lldb/Target/Process.h" +#include "lldb/Core/Log.h" #include "lldb/Target/Platform.h" +#include "lldb/Target/Process.h" #include "lldb/Target/UnixSignals.h" -#include "lldb/Core/Log.h" +#include "lldb/lldb-defines.h" #include "lldb/API/SBUnixSignals.h" using namespace lldb; using namespace lldb_private; -SBUnixSignals::SBUnixSignals () -{} +SBUnixSignals::SBUnixSignals() {} -SBUnixSignals::SBUnixSignals (const SBUnixSignals &rhs) : - m_opaque_wp(rhs.m_opaque_wp) -{ -} +SBUnixSignals::SBUnixSignals(const SBUnixSignals &rhs) + : m_opaque_wp(rhs.m_opaque_wp) {} -SBUnixSignals::SBUnixSignals(ProcessSP &process_sp) : - m_opaque_wp(process_sp ? process_sp->GetUnixSignals() : nullptr) -{ -} +SBUnixSignals::SBUnixSignals(ProcessSP &process_sp) + : m_opaque_wp(process_sp ? process_sp->GetUnixSignals() : nullptr) {} -SBUnixSignals::SBUnixSignals(PlatformSP &platform_sp) : - m_opaque_wp(platform_sp ? platform_sp->GetUnixSignals() : nullptr) -{ -} +SBUnixSignals::SBUnixSignals(PlatformSP &platform_sp) + : m_opaque_wp(platform_sp ? platform_sp->GetUnixSignals() : nullptr) {} -const SBUnixSignals& -SBUnixSignals::operator = (const SBUnixSignals& rhs) -{ - if (this != &rhs) - m_opaque_wp = rhs.m_opaque_wp; - return *this; +const SBUnixSignals &SBUnixSignals::operator=(const SBUnixSignals &rhs) { + if (this != &rhs) + m_opaque_wp = rhs.m_opaque_wp; + return *this; } -SBUnixSignals::~SBUnixSignals() -{ -} +SBUnixSignals::~SBUnixSignals() {} -UnixSignalsSP -SBUnixSignals::GetSP() const -{ - return m_opaque_wp.lock(); -} +UnixSignalsSP SBUnixSignals::GetSP() const { return m_opaque_wp.lock(); } -void -SBUnixSignals::SetSP(const UnixSignalsSP &signals_sp) -{ - m_opaque_wp = signals_sp; +void SBUnixSignals::SetSP(const UnixSignalsSP &signals_sp) { + m_opaque_wp = signals_sp; } -void -SBUnixSignals::Clear () -{ - m_opaque_wp.reset(); -} +void SBUnixSignals::Clear() { m_opaque_wp.reset(); } -bool -SBUnixSignals::IsValid() const -{ - return static_cast<bool>(GetSP()); -} +bool SBUnixSignals::IsValid() const { return static_cast<bool>(GetSP()); } -const char * -SBUnixSignals::GetSignalAsCString (int32_t signo) const -{ - if (auto signals_sp = GetSP()) - return signals_sp->GetSignalAsCString(signo); +const char *SBUnixSignals::GetSignalAsCString(int32_t signo) const { + if (auto signals_sp = GetSP()) + return signals_sp->GetSignalAsCString(signo); - return nullptr; + return nullptr; } -int32_t -SBUnixSignals::GetSignalNumberFromName (const char *name) const -{ - if (auto signals_sp = GetSP()) - return signals_sp->GetSignalNumberFromName(name); +int32_t SBUnixSignals::GetSignalNumberFromName(const char *name) const { + if (auto signals_sp = GetSP()) + return signals_sp->GetSignalNumberFromName(name); - return LLDB_INVALID_SIGNAL_NUMBER; + return LLDB_INVALID_SIGNAL_NUMBER; } -bool -SBUnixSignals::GetShouldSuppress (int32_t signo) const -{ - if (auto signals_sp = GetSP()) - return signals_sp->GetShouldSuppress(signo); +bool SBUnixSignals::GetShouldSuppress(int32_t signo) const { + if (auto signals_sp = GetSP()) + return signals_sp->GetShouldSuppress(signo); - return false; + return false; } -bool -SBUnixSignals::SetShouldSuppress (int32_t signo, bool value) -{ - Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); - auto signals_sp = GetSP(); +bool SBUnixSignals::SetShouldSuppress(int32_t signo, bool value) { + Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API)); + auto signals_sp = GetSP(); - if (log) - { - log->Printf ("SBUnixSignals(%p)::SetShouldSuppress (signo=%d, value=%d)", - static_cast<void*>(signals_sp.get()), - signo, - value); - } + if (log) { + log->Printf("SBUnixSignals(%p)::SetShouldSuppress (signo=%d, value=%d)", + static_cast<void *>(signals_sp.get()), signo, value); + } - if (signals_sp) - return signals_sp->SetShouldSuppress(signo, value); + if (signals_sp) + return signals_sp->SetShouldSuppress(signo, value); - return false; + return false; } -bool -SBUnixSignals::GetShouldStop (int32_t signo) const -{ - if (auto signals_sp = GetSP()) - return signals_sp->GetShouldStop(signo); +bool SBUnixSignals::GetShouldStop(int32_t signo) const { + if (auto signals_sp = GetSP()) + return signals_sp->GetShouldStop(signo); - return false; + return false; } -bool -SBUnixSignals::SetShouldStop (int32_t signo, bool value) -{ - Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); - auto signals_sp = GetSP(); +bool SBUnixSignals::SetShouldStop(int32_t signo, bool value) { + Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API)); + auto signals_sp = GetSP(); - if (log) - { - log->Printf ("SBUnixSignals(%p)::SetShouldStop (signo=%d, value=%d)", - static_cast<void*>(signals_sp.get()), - signo, - value); - } + if (log) { + log->Printf("SBUnixSignals(%p)::SetShouldStop (signo=%d, value=%d)", + static_cast<void *>(signals_sp.get()), signo, value); + } - if (signals_sp) - return signals_sp->SetShouldStop(signo, value); + if (signals_sp) + return signals_sp->SetShouldStop(signo, value); - return false; + return false; } -bool -SBUnixSignals::GetShouldNotify (int32_t signo) const -{ - if (auto signals_sp = GetSP()) - return signals_sp->GetShouldNotify(signo); +bool SBUnixSignals::GetShouldNotify(int32_t signo) const { + if (auto signals_sp = GetSP()) + return signals_sp->GetShouldNotify(signo); - return false; + return false; } -bool -SBUnixSignals::SetShouldNotify (int32_t signo, bool value) -{ - Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API)); - auto signals_sp = GetSP(); +bool SBUnixSignals::SetShouldNotify(int32_t signo, bool value) { + Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_API)); + auto signals_sp = GetSP(); - if (log) - { - log->Printf ("SBUnixSignals(%p)::SetShouldNotify (signo=%d, value=%d)", - static_cast<void*>(signals_sp.get()), - signo, - value); - } + if (log) { + log->Printf("SBUnixSignals(%p)::SetShouldNotify (signo=%d, value=%d)", + static_cast<void *>(signals_sp.get()), signo, value); + } - if (signals_sp) - return signals_sp->SetShouldNotify(signo, value); + if (signals_sp) + return signals_sp->SetShouldNotify(signo, value); - return false; + return false; } -int32_t -SBUnixSignals::GetNumSignals () const -{ - if (auto signals_sp = GetSP()) - return signals_sp->GetNumSignals(); +int32_t SBUnixSignals::GetNumSignals() const { + if (auto signals_sp = GetSP()) + return signals_sp->GetNumSignals(); - return -1; + return -1; } -int32_t -SBUnixSignals::GetSignalAtIndex (int32_t index) const -{ - if (auto signals_sp = GetSP()) - return signals_sp->GetSignalAtIndex(index); +int32_t SBUnixSignals::GetSignalAtIndex(int32_t index) const { + if (auto signals_sp = GetSP()) + return signals_sp->GetSignalAtIndex(index); - return LLDB_INVALID_SIGNAL_NUMBER; + return LLDB_INVALID_SIGNAL_NUMBER; } |