1. 20 12月, 2016 1 次提交
  2. 17 12月, 2016 1 次提交
  3. 06 2月, 2016 1 次提交
  4. 27 1月, 2016 1 次提交
  5. 21 1月, 2016 1 次提交
  6. 05 10月, 2015 1 次提交
    • A
      terminal: Implements init file and source command · eb2bc2a7
      aarzilli 提交于
      The 'source' command reads the file specified as argument and executes
      it as a list of delve commands.
      Additionally a flag '--init' can be passed to delve specifying a file
      containing a list of commands to execute on startup.
      
      Issue #96
      eb2bc2a7
  7. 22 6月, 2015 1 次提交
  8. 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
  9. 13 6月, 2015 1 次提交
  10. 15 5月, 2015 1 次提交
  11. 09 5月, 2015 1 次提交
  12. 05 5月, 2015 1 次提交
    • D
      Consolidate test support/setup · ecb8e8a4
      Dan Mace 提交于
      Add a test support package which allows shared test functionality
      for both the unit and integration tests.
      
      Tests importing the proctl/test package will gain access to a special
      test entrypoint which precompiles fixtures and makes them available
      to tests.
      ecb8e8a4