1. 20 12月, 2014 4 次提交
  2. 18 12月, 2014 1 次提交
    • D
      Refactor: move cli logic into cli client · 7fec8251
      Derek Parker 提交于
      First of a few refactors to allow multiple clients / frontends for
      Delve. Current implementation now uses a cli client, but conceivably we
      could have an http or socket based client as well.
      7fec8251
  3. 12 12月, 2014 1 次提交
  4. 11 12月, 2014 2 次提交
  5. 10 12月, 2014 4 次提交
  6. 09 12月, 2014 7 次提交
  7. 06 12月, 2014 2 次提交
  8. 05 12月, 2014 2 次提交
  9. 03 12月, 2014 6 次提交
  10. 02 12月, 2014 2 次提交
  11. 29 11月, 2014 2 次提交
  12. 27 11月, 2014 2 次提交
  13. 26 11月, 2014 1 次提交
  14. 25 11月, 2014 3 次提交
    • D
      Avoid carrying closure around with goroutine · 04097af7
      Derek Parker 提交于
      04097af7
    • D
      Update documentation · 36d3ecd6
      Derek Parker 提交于
      36d3ecd6
    • D
      Improve support for goroutine context switching · 3b2b1793
      Derek Parker 提交于
      Remove any assumption that a wait syscall on a thread id after a
      continue will return. Any time we continue a thread, wait for activity
      from any thread, because the scheduler may well have switched contexts
      on us due to syscall entrace, channel op, etc...
      
      There are several more things to be done here including:
      
      * Potential tracking of goroutine id as we jump around to thread
        contexts.
      * Potential of selectively choosing threads to operate on based on the
        internal M data structures, ensuring that our M has an active G.
      
      This commit partially fixes #23 and #24, however there are still some
      random hangs that happen and need to be ironed out.
      3b2b1793
  15. 24 11月, 2014 1 次提交