mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
fa20edc44d
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
18 lines
497 B
C
18 lines
497 B
C
#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_VMCOUNTERS_H_
|
|
#define COSMOPOLITAN_LIBC_NT_STRUCT_VMCOUNTERS_H_
|
|
|
|
struct NtVmCounters {
|
|
size_t PeakVirtualSize;
|
|
size_t VirtualSize;
|
|
uint32_t PageFaultCount;
|
|
size_t PeakWorkingSetSize;
|
|
size_t WorkingSetSize;
|
|
size_t QuotaPeakPagedPoolUsage;
|
|
size_t QuotaPagedPoolUsage;
|
|
size_t QuotaPeakNonPagedPoolUsage;
|
|
size_t QuotaNonPagedPoolUsage;
|
|
size_t PagefileUsage;
|
|
size_t PeakPagefileUsage;
|
|
};
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_NT_STRUCT_VMCOUNTERS_H_ */
|