From: Devang Patel Date: Tue, 1 Feb 2011 21:47:35 +0000 (+0000) Subject: Update to match changes in lldb interface. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a3138424cfbf92f995ef7c08537098307d279df3;p=oota-llvm.git Update to match changes in lldb interface. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124687 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/CollectDebugInfoUsingLLDB.py b/utils/CollectDebugInfoUsingLLDB.py index cc40450218f..4dbd19afa62 100755 --- a/utils/CollectDebugInfoUsingLLDB.py +++ b/utils/CollectDebugInfoUsingLLDB.py @@ -154,7 +154,8 @@ if target.IsValid(): # Launch the process. Since we specified synchronous mode, we won't return # from this function until we hit the breakpoint at main - process = target.LaunchProcess ([''], [''], "/dev/stdout", 0, False) + sberror = lldb.SBError() + process = target.Launch (None, None, os.ctermid(), os.ctermid(), os.ctermid(), None, 0, False, sberror) # Make sure the launch went ok while stopped_at_breakpoint(process): thread = process.GetThreadAtIndex (0)