2 writes to VmRSS
System.Private.CoreLib (2)
src\libraries\Common\src\Interop\Linux\procfs\Interop.ProcFsStat.TryReadStatusFile.cs (2)
100valueParsed = ulong.TryParse(value[..^3], out results.VmRSS); 133results.VmRSS *= 1024;
1 reference to VmRSS
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Environment.Linux.cs (1)
10public static long WorkingSet => (long)(Interop.procfs.TryReadStatusFile(Interop.procfs.ProcPid.Self, out Interop.procfs.ParsedStatus status) ? status.VmRSS : 0);