Merge pull request #4 from struCoder/dev
feat(dev): fix proc type when there is no pid
This commit is contained in:
commit
beb3d83057
|
@ -103,7 +103,8 @@ func stat(pid int, statType string) (*SysInfo, error) {
|
|||
|
||||
procStatFileBytes, err := ioutil.ReadFile(path.Join("/proc", strconv.Itoa(pid), "stat"))
|
||||
splitAfter := strings.SplitAfter(string(procStatFileBytes), ")")
|
||||
if len(splitAfter) == 0 {
|
||||
|
||||
if len(splitAfter) == 0 || len(splitAfter) == 1 {
|
||||
return sysInfo, errors.New("can not foud this pid: " + strconv.Itoa(pid))
|
||||
}
|
||||
infos := strings.Split(splitAfter[1], " ")
|
||||
|
|
Loading…
Reference in New Issue