File: syscall_windows_test.go

package info (click to toggle)
mongo-tools 3.2.11-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 10,612 kB
  • ctags: 10,571
  • sloc: python: 5,428; ansic: 589; sh: 397; makefile: 62; lisp: 19
file content (11 lines) | stat: -rw-r--r-- 181 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
package mgo_test

func stop(pid int) (err error) {
	panicOnWindows() // Always does.
	return nil
}

func cont(pid int) (err error) {
	panicOnWindows() // Always does.
	return nil
}