| 51 | } |
| 52 | |
| 53 | const char* CPUInfo::GetCPUModelString(int cpu_id) const |
| 54 | { |
| 55 | int cpu_model = GetCPUModel(cpu_id); |
| 56 | |
| 57 | if(cpu_model < 0) |
| 58 | return nullptr; |
| 59 | |
| 60 | return cpu_model_table[cpu_model]; |
| 61 | } |
| 62 | } // namespace TEngine |
no outgoing calls
no test coverage detected