go-zero/core/proc/process.go
2021-02-22 10:07:39 +08:00

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
}