Remove extraneous Windows functions
This commit is contained in:
		@@ -20,18 +20,6 @@ typedef struct {
 | 
			
		||||
 | 
			
		||||
static os_metrics GlobalMetrics;
 | 
			
		||||
 | 
			
		||||
static u64 GetOSTimerFreq(void) {
 | 
			
		||||
  LARGE_INTEGER Freq;
 | 
			
		||||
  QueryPerformanceFrequency(&Freq);
 | 
			
		||||
  return Freq.QuadPart;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static u64 ReadOSTimer(void) {
 | 
			
		||||
  LARGE_INTEGER Value;
 | 
			
		||||
  QueryPerformanceCounter(&Value);
 | 
			
		||||
  return Value.QuadPart;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static u64 ReadWindowsPageFaultCount(void) {
 | 
			
		||||
  PROCESS_MEMORY_COUNTERS_EX MemoryCounters = {0};
 | 
			
		||||
  MemoryCounters.cb = sizeof(MemoryCounters);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user