1. 28 8月, 2015 3 次提交
  2. 22 8月, 2015 3 次提交
  3. 20 8月, 2015 5 次提交
    • D
      thread.Halt: Remove duplication between OS implementations · 38e00513
      Derek Parker 提交于
      Bring similar code up to top level, and keep OS dependant code in OS
      dependant files. DRY up code a bit.
      38e00513
    • D
      command (next): Improvements for parallel programs · b9846c76
      Derek Parker 提交于
      This patch aims to improve how Delve tracks the current goroutine,
      especially in very highly parallel programs. The main spirit of this
      patch is to ensure that even in situations where the goroutine we care
      about is not executing (common for len(g) > len(m)) we still end up back
      on that goroutine as a result of executing the 'next' command.
      
      We accomplish this by tracking our original goroutine id, and any time a
      breakpoint is hit or a threads stops, we examine the stopped threads and
      see if any are executing the goroutine we care about. If not, we set
      'next' breakpoint for them again and continue them. This is done so that
      one of those threads can eventually pick up the goroutine we care about
      and begin executing it again.
      b9846c76
    • D
      dlv/main: Add exec subcommand to debug existing binary · 71845350
      Derek Parker 提交于
      Added subcommand which takes a path to an existing binary, starts it,
      and begins a debug session.
      71845350
    • D
      api/conversions: Do not shorten file paths · 32b499fa
      Derek Parker 提交于
      The shortening of file paths is purely a terminal UI concern. Move that
      code to the presentation layer, and remove from the service layer.
      32b499fa
    • D
      Add Go1.5 to travis list · 8d6bb4a1
      Derek Parker 提交于
      8d6bb4a1
  4. 19 8月, 2015 1 次提交
  5. 18 8月, 2015 1 次提交
  6. 17 8月, 2015 2 次提交
  7. 15 8月, 2015 2 次提交
  8. 14 8月, 2015 5 次提交
  9. 12 8月, 2015 4 次提交
  10. 11 8月, 2015 3 次提交
  11. 10 8月, 2015 4 次提交
  12. 09 8月, 2015 3 次提交
  13. 06 8月, 2015 1 次提交
  14. 04 8月, 2015 2 次提交
  15. 02 8月, 2015 1 次提交