mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
Update to match changes in lldb interface.
llvm-svn: 124687
This commit is contained in:
parent
323825cee4
commit
ee65f3c2c3
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user