aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/bitbucket.org/kardianos/osext/osext_procfs.go
blob: 546fec915572499de06631f36714e6fe185bbd43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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

package osext

import (
    "errors"
    "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":
        return os.Readlink("/proc/curproc/file")
    }
    return "", errors.New("ExecPath not implemented for " + runtime.GOOS)
}