| 326 | } |
| 327 | |
| 328 | IOService *SMCProcessor::probe(IOService *provider, SInt32 *score) { |
| 329 | if (getKernelVersion() < KernelVersion::Lion) { |
| 330 | DBGLOG("scpu", "unsupported before 10.7"); |
| 331 | return nullptr; |
| 332 | } |
| 333 | |
| 334 | return IOService::probe(provider, score); |
| 335 | } |
| 336 | |
| 337 | bool SMCProcessor::start(IOService *provider) { |
| 338 | DBGLOG("scpu", "starting up cpu sensors"); |
nothing calls this directly
no outgoing calls
no test coverage detected