Files
rcw/daemon/2server-pidToPath-Readlink.go
T
2025-04-05 00:08:23 -04:00

15 lines
257 B
Go

//go:build linux || freebsd
package daemon
import (
"fmt"
"os"
)
// pidToPath returns the path of the executable that has the given PID.
func pidToPath(pid int) string {
path, _ := os.Readlink(fmt.Sprintf("/proc/%d/"+pidPathFile, pid))
return path
}