forked from OSchip/llvm-project
82abefa4b1
Summary: The usage of shared_from_this forces us to separate construction and initialization phases, because shared_from_this() is not available in the constructor (or destructor). The shared semantics are not necessary, as we always have a clear owner of the native process class (GDBRemoteCommunicationServerLLDB object). Even if we need shared semantics in the future (which I think we should strongly avoid), reverting this will not be necessary -- the owners can still easily store the native process object in a shared pointer if they really want to -- this just prevents the knowledge of that from leaking into the class implementation. After this a NativeThread object will hold a reference to the parent process (instead of a weak_ptr) -- having a process instance always available allows us to simplify some logic in this class (some of it was already simplified because we were asserting that the process is available, but this makes it obvious). Reviewers: krytarowski, eugene, zturner Subscribers: lldb-commits Differential Revision: https://reviews.llvm.org/D35123 llvm-svn: 308282 |
||
---|---|---|
.. | ||
Darwin/resources | ||
Acceptor.cpp | ||
Acceptor.h | ||
CMakeLists.txt | ||
LLDBServerUtilities.cpp | ||
LLDBServerUtilities.h | ||
lldb-gdbserver.cpp | ||
lldb-platform.cpp | ||
lldb-server.cpp | ||
lldb-server.exports |