commit | 8bc34f4d96a4b6cf736dad96bc83156b3014bb53 | [log] [tgz] |
---|---|---|
author | Oleksiy Vyalov <ovyalov@google.com> | Thu Feb 19 17:58:04 2015 +0000 |
committer | Oleksiy Vyalov <ovyalov@google.com> | Thu Feb 19 17:58:04 2015 +0000 |
tree | a2118ed2b376f676818ab883fbc68ff115d8282f | |
parent | f08a3ccf50791e4f3d05341754633ed7fc6371aa [diff] [blame] |
Prevent LLGS from crashing when exiting - make NativeProcessLinux to wait until ThreadStateCoordinator is fully stopped before entering ~NativeProcessLinux. http://reviews.llvm.org/D7692 llvm-svn: 229875
diff --git a/lldb/source/Host/common/NativeProcessProtocol.cpp b/lldb/source/Host/common/NativeProcessProtocol.cpp index ff7310d..35003f5 100644 --- a/lldb/source/Host/common/NativeProcessProtocol.cpp +++ b/lldb/source/Host/common/NativeProcessProtocol.cpp
@@ -435,3 +435,9 @@ { // Default implementation does nothing. } + +void +NativeProcessProtocol::Terminate () +{ + // Default implementation does nothing. +}