Move osutil to sys package
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
parent
789ff967c1
commit
51510a8806
5 changed files with 5 additions and 5 deletions
18
sys/fds.go
Normal file
18
sys/fds.go
Normal file
|
@ -0,0 +1,18 @@
|
|||
// +build !windows,!darwin
|
||||
|
||||
package sys
|
||||
|
||||
import (
|
||||
"io/ioutil"
|
||||
"path/filepath"
|
||||
"strconv"
|
||||
)
|
||||
|
||||
// GetOpenFds returns the number of open fds for the process provided by pid
|
||||
func GetOpenFds(pid int) (int, error) {
|
||||
dirs, err := ioutil.ReadDir(filepath.Join("/proc", strconv.Itoa(pid), "fd"))
|
||||
if err != nil {
|
||||
return -1, err
|
||||
}
|
||||
return len(dirs), nil
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue