mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-26 09:18:56 +00:00
Update to match changes in lldb interface.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124687 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -154,7 +154,8 @@ if target.IsValid():
|
|||||||
|
|
||||||
# Launch the process. Since we specified synchronous mode, we won't return
|
# Launch the process. Since we specified synchronous mode, we won't return
|
||||||
# from this function until we hit the breakpoint at main
|
# 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
|
# Make sure the launch went ok
|
||||||
while stopped_at_breakpoint(process):
|
while stopped_at_breakpoint(process):
|
||||||
thread = process.GetThreadAtIndex (0)
|
thread = process.GetThreadAtIndex (0)
|
||||||
|
Reference in New Issue
Block a user