summaryrefslogtreecommitdiffstats
path: root/lldb/source/Target/Process.cpp
diff options
context:
space:
mode:
authorJean-Daniel Dupas <devlists@shadowlab.org>2013-12-23 22:32:54 +0000
committerJean-Daniel Dupas <devlists@shadowlab.org>2013-12-23 22:32:54 +0000
commit9c517c0dd961578c8ce8e422c3629750de2e921e (patch)
tree1bb10c1e2cc341a0b3be2f045240593a9778e9d6 /lldb/source/Target/Process.cpp
parentedb61f02b62b30bc81a5543b9c04c71c19336072 (diff)
downloadbcm5719-llvm-9c517c0dd961578c8ce8e422c3629750de2e921e.tar.gz
bcm5719-llvm-9c517c0dd961578c8ce8e422c3629750de2e921e.zip
Remove wait_for_launch parameter from DoAttachToProcessWithName(). This parameter is redundant as this information is already provided by the ProcessAttachInfo parameter.
CC: lldb-commits Differential Revision: http://llvm-reviews.chandlerc.com/D2463 llvm-svn: 197923
Diffstat (limited to 'lldb/source/Target/Process.cpp')
-rw-r--r--lldb/source/Target/Process.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/Process.cpp b/lldb/source/Target/Process.cpp
index 81e12a3b2f7..8b1aba634b7 100644
--- a/lldb/source/Target/Process.cpp
+++ b/lldb/source/Target/Process.cpp
@@ -3212,7 +3212,7 @@ Process::Attach (ProcessAttachInfo &attach_info)
const bool restarted = false;
SetPublicState (eStateAttaching, restarted);
// Now attach using these arguments.
- error = DoAttachToProcessWithName (process_name, wait_for_launch, attach_info);
+ error = DoAttachToProcessWithName (process_name, attach_info);
}
else
{
OpenPOWER on IntegriCloud