7 references to procfs
System.Private.CoreLib (7)
src\libraries\Common\src\Interop\Unix\System.Native\Interop.MountPoints.cs (4)
43if (File.Exists(Interop.procfs.ProcMountInfoFilePath)) 47using StreamReader reader = new(Interop.procfs.ProcMountInfoFilePath); 52if (Interop.procfs.TryParseMountInfoLine(line, out Interop.procfs.ParsedMount mount))
src\libraries\System.Private.CoreLib\src\System\Environment.Linux.cs (3)
10public static long WorkingSet => (long)(Interop.procfs.TryReadStatusFile(Interop.procfs.ProcPid.Self, out Interop.procfs.ParsedStatus status) ? status.VmRSS : 0);