Skip to content

Commit 200562a

Browse files
author
Devang Patel
committed
Simplify.
llvm-svn: 134564
1 parent 5666b34 commit 200562a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CollectDebugInfoUsingLLDB.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def stopped_at_breakpoint (process):
202202
# Launch the process. Since we specified synchronous mode, we won't return
203203
# from this function until we hit the breakpoint at main
204204
sberror = lldb.SBError()
205-
process = target.Launch (None, None, os.ctermid(), os.ctermid(), os.ctermid(), None, 0, False, sberror)
205+
process = target.LaunchSimple(None, None, None)
206206
# Make sure the launch went ok
207207
while stopped_at_breakpoint(process):
208208
# print "stopped at a bp"

0 commit comments

Comments
 (0)