12345678910111213141516171819202122 |
- //go:build linux || freebsd
- package fileutils // import "github.com/docker/docker/pkg/fileutils"
- import (
- "context"
- "fmt"
- "os"
- "github.com/containerd/containerd/log"
- )
- // GetTotalUsedFds Returns the number of used File Descriptors by
- // reading it via /proc filesystem.
- func GetTotalUsedFds() int {
- if fds, err := os.ReadDir(fmt.Sprintf("/proc/%d/fd", os.Getpid())); err != nil {
- log.G(context.TODO()).Errorf("Error opening /proc/%d/fd: %s", os.Getpid(), err)
- } else {
- return len(fds)
- }
- return -1
- }
|