1
0
mirror of https://github.com/minio/minio.git synced 2025-03-21 21:14:14 -04:00

16 lines
218 B
Go
Raw Normal View History

2015-10-19 23:03:01 -07:00
// +build !windows
package mgo_test
import (
"syscall"
)
func stop(pid int) (err error) {
return syscall.Kill(pid, syscall.SIGSTOP)
}
func cont(pid int) (err error) {
return syscall.Kill(pid, syscall.SIGCONT)
}