syscall_windows_test.go 181 B

1234567891011
  1. package mgo_test
  2. func stop(pid int) (err error) {
  3. panicOnWindows() // Always does.
  4. return nil
  5. }
  6. func cont(pid int) (err error) {
  7. panicOnWindows() // Always does.
  8. return nil
  9. }