1. 11 8月, 2015 1 次提交
  2. 09 8月, 2015 1 次提交
    • A
      Improve commands which take a location spec · 8e8d2660
      aarzilli 提交于
      Breakpoints, tracepoints, etc.. take a location spec as input. This
      patch improves the expressiveness of that API. It allows:
      
      * Breakpoint at line
      * Breakpoint at function (handling package / receiver smoothing)
      * Breakpoint at address
      * Breakpoint at file:line
      * Setting breakpoint based off regexp
      8e8d2660
  3. 28 7月, 2015 5 次提交
  4. 16 7月, 2015 1 次提交
  5. 14 7月, 2015 1 次提交
  6. 11 7月, 2015 8 次提交
  7. 10 7月, 2015 3 次提交
  8. 08 7月, 2015 2 次提交
  9. 30 6月, 2015 1 次提交
  10. 29 6月, 2015 2 次提交
  11. 27 6月, 2015 1 次提交
  12. 26 6月, 2015 2 次提交
  13. 22 6月, 2015 3 次提交
  14. 21 6月, 2015 4 次提交
  15. 18 6月, 2015 1 次提交
  16. 14 6月, 2015 1 次提交
    • D
      Refactor: Use thread-locked goroutine for ptrace ops · e4fc5e32
      Derek Parker 提交于
      Previously either the terminal client or the debugger service would
      either lock main goroutine to a thread or provide a locked goroutine to
      run _all_ DebuggedProcess functions in. This is unnecessary because only
      ptrace functions need to be run from the same thread that originated the
      PT_ATTACH request.
      
      Here we use a specific thread-locked goroutine to service any ptrace
      request. That goroutine is also responsible for the initial spawning /
      attaching of the process, since it must be responsible for the PT_ATTACH
      request.
      e4fc5e32
  17. 13 6月, 2015 3 次提交