(i, j int)
| 127 | func (p ProcFDInfos) Len() int { return len(p) } |
| 128 | func (p ProcFDInfos) Swap(i, j int) { p[i], p[j] = p[j], p[i] } |
| 129 | func (p ProcFDInfos) Less(i, j int) bool { return p[i].FD < p[j].FD } |
| 130 | |
| 131 | // InotifyWatchLen returns the total number of inotify watches. |
| 132 | func (p ProcFDInfos) InotifyWatchLen() (int, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected