cosmopolitan/libc/nt/struct/vmcounters.h
Justine Tunney fa20edc44d
Reduce header complexity
- 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
2023-11-28 14:39:42 -08:00

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_ */