1. 02 8月, 2017 10 次提交
  2. 29 7月, 2017 1 次提交
  3. 27 7月, 2017 12 次提交
  4. 21 7月, 2017 3 次提交
  5. 19 7月, 2017 3 次提交
  6. 08 7月, 2017 2 次提交
    • A
      proc: fix interaction of RequestManualStop and conditional breakpoints (#876) · 07e53f7c
      Alessandro Arzilli 提交于
      * proc: fix interaction of RequestManualStop and conditional breakpoints
      
      A conditional breakpoint that is hit but has the condition evaluate to
      false can block a RequestManualStop from working. If the conditional
      breakpoint is set on an instruction that is executed very frequently by
      multiple goroutines (or many conditional breakpoints are set) it could
      prevent all calls to RequestManualStop from working.
      
      This commit fixes the problem by changing proc.Continue to exit
      unconditionally after a RequestManualStop is called.
      
      * proc/gdbserial: fix ContinueOnce getting stuck on macOS
      
      Fixes #902
      07e53f7c
    • A
      proc/eval: fix interface equality with nil (#914) · 8276ba06
      Alessandro Arzilli 提交于
      Fixes #904
      8276ba06
  7. 30 6月, 2017 3 次提交
  8. 27 6月, 2017 3 次提交
  9. 22 6月, 2017 1 次提交
    • H
      proc: read G struct offset from runtime.tlsg if possible (#883) · 7d2834a9
      heschik 提交于
      When a Go program is externally linked, the external linker is
      responsible for picking the TLS offset. It records its decision in the
      runtime.tlsg symbol. Read the offset from that rather than guessing -16.
      
      This implementation causes a regression: 1.4 and earlier will no longer
      work.
      7d2834a9
  10. 21 6月, 2017 2 次提交