1. 12 8月, 2016 1 次提交
  2. 05 8月, 2016 1 次提交
  3. 22 7月, 2016 1 次提交
    • D
      proc: Fix stepping into runtime.duff* (#575) · 218c2b95
      dr2chase 提交于
      Detect calls that do not target a function's entrypoint
      (i.e, calls to runtime.duffzero and runtime.duffcopy) and
      instead step into them directly.  StepInto sets a breakpoint
      past the called function's prologue and expects that continue
      will hit that breakpoint, but because the call is into the
      interior of the function (well past the prologue) this fails.
      
      Fixes #573
      218c2b95
  4. 21 7月, 2016 1 次提交
  5. 08 7月, 2016 2 次提交
  6. 06 7月, 2016 2 次提交
  7. 03 7月, 2016 1 次提交
  8. 02 7月, 2016 1 次提交
    • A
      Replaced net/rpc with custom version · 80336e57
      aarzilli 提交于
      This version preserves the order of requests, allows the
      client to switch between API versions and introduces a
      way to send notifications to the client (see TODO item at:
      proc/proc_linux.go:325).
      
      Fixes #523, #571
      80336e57
  9. 30 6月, 2016 1 次提交
    • A
      proc: detect when Launching non-executable files · 51c39ed1
      aarzilli 提交于
      This provides a better error message when the user tries to run dlv
      debug on a directory that does not contain a main package, when `dlv
      exec` is used with a source file.
      
      Additionally the architecture of the executable is checked as suggested
      by @alexbrainman in #443.
      
      Fixes #509
      51c39ed1
  10. 25 6月, 2016 5 次提交
  11. 22 6月, 2016 1 次提交
  12. 21 6月, 2016 1 次提交
  13. 08 6月, 2016 1 次提交
  14. 30 5月, 2016 5 次提交
  15. 26 5月, 2016 1 次提交
  16. 21 5月, 2016 4 次提交
  17. 18 5月, 2016 4 次提交
  18. 16 5月, 2016 1 次提交
  19. 14 5月, 2016 1 次提交
  20. 13 5月, 2016 1 次提交
  21. 30 4月, 2016 1 次提交
    • A
      docs: Documentation for command line frontend (#518) · 82ece547
      Alessandro Arzilli 提交于
      * documentation: copied old documentation from wiki
      
      * command: better online documentation
      
      Help without arguments prints just a short summary for each command,
      help followed by a command prints the command's syntax and a longer
      explanation.
      
      * documentation: automatically generate Documentation/cli/README.md
      82ece547
  22. 25 4月, 2016 3 次提交
    • A
      terminal,service: auto-continue during next and step (#448) · c4e01da5
      Alessandro Arzilli 提交于
      * proc: bugfix: StepInto can not function when temp bps exist
      
      * terminal,service: auto-continue during next and step
      
      Make dlv call continue automatically when a breakpoint is hit on a
      different goroutine during a next or step operation.
      Added API hooks to implement the other solution to this problem (cancel
      the next/step operation if a different breakpoint is hit).
      
      Fixes #387
      c4e01da5
    • A
      proc: allow use of quoted type names in type casts (#434) · a7a0cc75
      Alessandro Arzilli 提交于
      If we are unable to correctly guess how a type is serialized in
      debug_info let the user specify it directly.
      
      Workaround for #455
      a7a0cc75
    • A
      service: Make Halt work during tracing (#469) · 7820921b
      Alessandro Arzilli 提交于
      While tracing delve may spend most of its time outside of
      proc.(*Process).Continue, which renders
      service/rpc/client.(*Client).Halt ineffective.
      This commit changes the implementation of
      service/rpc/client.(*Client).Halt to make it capable of stopping traces.
      7820921b