diff options
| author | Stephane Sezer <sas@cd80.net> | 2015-09-09 22:58:23 +0000 |
|---|---|---|
| committer | Stephane Sezer <sas@cd80.net> | 2015-09-09 22:58:23 +0000 |
| commit | eee657045f83304db40ebc63ed7c2b93e127d9f0 (patch) | |
| tree | bc799d972925ab85b27e91e4fa29ce3541adfc9f | |
| parent | 60252d8febbe34c1d0470d86e74fa87700fbb610 (diff) | |
| download | bcm5719-llvm-eee657045f83304db40ebc63ed7c2b93e127d9f0.tar.gz bcm5719-llvm-eee657045f83304db40ebc63ed7c2b93e127d9f0.zip | |
Fix a small comment typo in Windows Process code.
llvm-svn: 247206
| -rw-r--r-- | lldb/source/Plugins/Process/Windows/Live/LocalDebugDelegate.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/Windows/Live/LocalDebugDelegate.h b/lldb/source/Plugins/Process/Windows/Live/LocalDebugDelegate.h index 2ce4e47f998..8fca78fca76 100644 --- a/lldb/source/Plugins/Process/Windows/Live/LocalDebugDelegate.h +++ b/lldb/source/Plugins/Process/Windows/Live/LocalDebugDelegate.h @@ -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
|

