1. 02 7月, 2015 1 次提交
  2. 01 7月, 2015 1 次提交
    • D
      Cleanup tracepoint commit · 6b99c5f5
      Derek Parker 提交于
      * Cleanup comments
      * Cleanup naming in certain instances
      * Modify stacktrace to return current location
      6b99c5f5
  3. 30 6月, 2015 1 次提交
  4. 28 6月, 2015 1 次提交
  5. 27 6月, 2015 1 次提交
  6. 22 6月, 2015 1 次提交
  7. 21 6月, 2015 4 次提交
  8. 20 6月, 2015 1 次提交
  9. 18 6月, 2015 1 次提交
  10. 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
  11. 13 6月, 2015 5 次提交
  12. 28 5月, 2015 2 次提交
  13. 09 5月, 2015 1 次提交
  14. 05 5月, 2015 1 次提交
  15. 02 5月, 2015 3 次提交
  16. 30 4月, 2015 1 次提交
    • D
      Introduce client/server separation · 2954e03a
      Dan Mace 提交于
      Refactor to introduce client/server separation, including a typed
      client API and a HTTP REST server implementation.
      
      Refactor the terminal to be an API consumer.
      2954e03a