1. 25 6月, 2016 2 次提交
    • A
      proc, terminal: step on parked goroutines · 6faa78ff
      aarzilli 提交于
      Previously Step would step through the goroutine associated with
      CurrentThread if SelectedGoroutine was parked
      6faa78ff
    • A
      proc, terminal: next on parked goroutines · d17c7c3a
      aarzilli 提交于
      Previously Next would step through the goroutine associated with
      CurrentThread if SelectedGoroutine was parked
      
      Also fixes a bug with proc.(*Process).StepInto where StepInto could
      switch to a different goroutine.
      d17c7c3a
  2. 22 6月, 2016 1 次提交
  3. 21 6月, 2016 1 次提交
  4. 08 6月, 2016 1 次提交
  5. 30 5月, 2016 5 次提交
  6. 26 5月, 2016 1 次提交
  7. 21 5月, 2016 4 次提交
  8. 18 5月, 2016 4 次提交
  9. 16 5月, 2016 1 次提交
  10. 14 5月, 2016 1 次提交
  11. 13 5月, 2016 1 次提交
  12. 30 4月, 2016 1 次提交
    • A
      docs: Documentation for command line frontend (#518) · 82ece547
      Alessandro Arzilli 提交于
      * documentation: copied old documentation from wiki
      
      * command: better online documentation
      
      Help without arguments prints just a short summary for each command,
      help followed by a command prints the command's syntax and a longer
      explanation.
      
      * documentation: automatically generate Documentation/cli/README.md
      82ece547
  13. 25 4月, 2016 8 次提交
  14. 22 4月, 2016 1 次提交
    • M
      proc: Fix command-line arguments on Windows (#501) · 60946a75
      Matias Lahti 提交于
      * proc: add tests for command-line arguments
      
      adds tests to make sure command-line arguments are passed to Launch() properly
      
      * proc_windows: pass command-line arguments to CreateProcess()
      
      build command-line arguments according to how the standard library does it and pass the command line along to the actual syscall on Windows.
      
      see discussion in #479
      
      * proc: better testing of cmd-line arguments
      
      * proc_windows: fix a possible error-case with passing just 1 argument
      
      previously, the command line pointer passed to sys.CreateProcess was empty, if we had 0 parameters (len(cmd) == 1, as cmd[0] is the executable, so no cmdlineGo would be created, while with any argument it would as len(cmd) > 1). This might cause problems down the road, so make sure we include the command line every time, even if it seems to work without.
      
      * proc: improve testing of command-line arguments
      
      test that arguments with spaces are passed on correctly and DRY failure/success condition checking in the args test
      60946a75
  15. 21 4月, 2016 1 次提交
  16. 19 4月, 2016 3 次提交
  17. 13 4月, 2016 2 次提交
  18. 09 4月, 2016 1 次提交
  19. 08 4月, 2016 1 次提交