package
0.0.0-20230226145215-11c86b91923d
Repository: https://github.com/golangast/groundup.git
Documentation: pkg.go.dev

# Functions

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
func GetProcData(exepath string, appexe string) (string, string, string, string, string, string, string, error) { path, err := exec.LookPath(exepath) if err != nil { fmt.Printf("didn't find '%s' executable\n", exepath) } pid, size, parent, threads, usage, e := processInfo(appexe) if e != nil { fmt.Println(e) } return exepath, path, pid, size, parent, threads, usage, nil }.