Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BreakpointCreateByLocation (0.43 sec)

  1. src/runtime/runtime-lldb_test.go

    import os
    
    TIMEOUT_SECS = 5
    
    debugger = lldb.SBDebugger.Create()
    debugger.SetAsync(True)
    target = debugger.CreateTargetWithFileAndArch("a.exe", None)
    if target:
      print "Created target"
      main_bp = target.BreakpointCreateByLocation("main.go", 10)
      if main_bp:
        print "Created breakpoint"
      process = target.LaunchSimple(None, None, os.getcwd())
      if process:
        print "Process launched"
        listener = debugger.GetListener()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top