aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/kardianos/osext/osext_procfs.go
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/github.com/kardianos/osext/osext_procfs.go')
-rw-r--r--Godeps/_workspace/src/github.com/kardianos/osext/osext_procfs.go28
1 files changed, 28 insertions, 0 deletions
diff --git a/Godeps/_workspace/src/github.com/kardianos/osext/osext_procfs.go b/Godeps/_workspace/src/github.com/kardianos/osext/osext_procfs.go
new file mode 100644
index 000000000..a50021ad5
--- /dev/null
+++ b/Godeps/_workspace/src/github.com/kardianos/osext/osext_procfs.go
@@ -0,0 +1,28 @@
+// Copyright 2012 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// +build linux netbsd openbsd solaris dragonfly
+
+package osext
+
+import (
+ "errors"
+ "fmt"
+ "os"
+ "runtime"
+)
+
+func executable() (string, error) {
+ switch runtime.GOOS {
+ case "linux":
+ return os.Readlink("/proc/self/exe")
+ case "netbsd":
+ return os.Readlink("/proc/curproc/exe")
+ case "openbsd", "dragonfly":
+ return os.Readlink("/proc/curproc/file")
+ case "solaris":
+ return os.Readlink(fmt.Sprintf("/proc/%d/path/a.out", os.Getpid()))
+ }
+ return "", errors.New("ExecPath not implemented for " + runtime.GOOS)
+}