| 266 | } |
| 267 | |
| 268 | void |
| 269 | cpu_initclocks(void) |
| 270 | { |
| 271 | |
| 272 | #ifdef SMP |
| 273 | if (PCPU_GET(cpuid) == 0) |
| 274 | cpu_initclocks_bsp(); |
| 275 | else |
| 276 | cpu_initclocks_ap(); |
| 277 | #else |
| 278 | cpu_initclocks_bsp(); |
| 279 | #endif |
| 280 | } |
| 281 | |
| 282 | #ifdef PLATFORM |
| 283 | void |
nothing calls this directly
no test coverage detected