(procPath string)
| 119 | } |
| 120 | |
| 121 | func isSupported(procPath string) bool { |
| 122 | _, err := os.Stat(vmMapsLimitPath(procPath)) |
| 123 | return err == nil |
| 124 | } |
| 125 | |
| 126 | func processMapsPath(procPath string, pid int) string { |
| 127 | return filepath.Join(procPath, strconv.Itoa(pid), "maps") |
no test coverage detected