mirror of
https://github.com/pgsty/minio.git
synced 2026-08-10 08:13:28 +03:00
Move all server and controller packages into top-level
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
// +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)
|
||||
}
|
||||
Reference in New Issue
Block a user