MCPcopy Create free account
hub / github.com/F-Stack/f-stack / cpu_tick_calibration

Function cpu_tick_calibration

freebsd/kern/kern_tc.c:2007–2016  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2005}
2006
2007void
2008cpu_tick_calibration(void)
2009{
2010 static time_t last_calib;
2011
2012 if (time_uptime != last_calib && !(time_uptime & 0xf)) {
2013 cpu_tick_calibrate(0);
2014 last_calib = time_uptime;
2015 }
2016}
2017
2018/*
2019 * This function gets called every 16 seconds on only one designated

Callers 2

hardclockFunction · 0.85
ff_hardclockFunction · 0.85

Calls 1

cpu_tick_calibrateFunction · 0.85

Tested by

no test coverage detected