Add new logging connectors

This commit is contained in:
Harshavardhana
2015-10-19 23:03:01 -07:00
parent d20842fc52
commit 469a3475b6
48 changed files with 21834 additions and 7 deletions
+15
View File
@@ -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)
}