Fix a small comment typo in Windows Process code.

llvm-svn: 247206
This commit is contained in:
Stephane Sezer 2015-09-09 22:58:23 +00:00
parent 60252d8feb
commit eee657045f
1 changed files with 3 additions and 3 deletions

View File

@ -31,9 +31,9 @@ namespace lldb_private
// 1) In the future when we add support for local debugging through LLGS, and we
// go through the Native*Protocol interface, it is likely we will need the
// additional flexibility provided by this sort of adapter pattern.
// 2) LLDB holds a shared_ptr to the ProcessWindows, and our driver thread also
// also needs access to it as well. To avoid a race condition, we want to
// make sure that we're also holding onto a shared_ptr.
// 2) LLDB holds a shared_ptr to the ProcessWindows, and our driver thread
// needs access to it as well. To avoid a race condition, we want to make
// sure that we're also holding onto a shared_ptr.
// lldb_private::Process supports enable_shared_from_this, but that gives us
// a ProcessSP (which is exactly what we are trying to decouple from the
// driver), so this adapter serves as a way to transparently hold the