You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
347 B
Go
27 lines
347 B
Go
package proc
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
var (
|
|
procName string
|
|
pid int
|
|
)
|
|
|
|
func init() {
|
|
procName = filepath.Base(os.Args[0])
|
|
pid = os.Getpid()
|
|
}
|
|
|
|
// Pid returns pid of current process.
|
|
func Pid() int {
|
|
return pid
|
|
}
|
|
|
|
// ProcessName returns the processname, same as the command name.
|
|
func ProcessName() string {
|
|
return procName
|
|
}
|