add go-plugin deps to vendor

This commit is contained in:
bergquist
2017-12-07 16:33:36 +01:00
parent a97360ab27
commit 0f6c470e03
193 changed files with 61425 additions and 966 deletions
+24
View File
@@ -0,0 +1,24 @@
package plugin
import (
"time"
)
// pidAlive checks whether a pid is alive.
func pidAlive(pid int) bool {
return _pidAlive(pid)
}
// pidWait blocks for a process to exit.
func pidWait(pid int) error {
ticker := time.NewTicker(1 * time.Second)
defer ticker.Stop()
for range ticker.C {
if !pidAlive(pid) {
break
}
}
return nil
}