vendor: add missing deps and remove go get
in .travis.yml
Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
This commit is contained in:
parent
9a740a0a42
commit
4a7a8efc2d
129 changed files with 11694 additions and 1733 deletions
20
vendor/github.com/nightlyone/lockfile/lockfile_unix.go
generated
vendored
Normal file
20
vendor/github.com/nightlyone/lockfile/lockfile_unix.go
generated
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris
|
||||
|
||||
package lockfile
|
||||
|
||||
import (
|
||||
"os"
|
||||
"syscall"
|
||||
)
|
||||
|
||||
func isRunning(pid int) (bool, error) {
|
||||
proc, err := os.FindProcess(pid)
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
|
||||
if err := proc.Signal(syscall.Signal(0)); err != nil {
|
||||
return false, nil
|
||||
}
|
||||
return true, nil
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue