| 2005 | } |
| 2006 | |
| 2007 | void |
| 2008 | cpu_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 |
no test coverage detected