mirror of
https://github.com/eiblog/eiblog.git
synced 2026-03-01 00:34:58 +08:00
add vendor
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