File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -353,6 +353,10 @@ static const char* parseCpuInfo(
353
353
(cpu -> name .length == 0 && ffParsePropLine (line , "processor 0:" , & cpu -> name )) ||
354
354
(cpu -> vendor .length == 0 && ffParsePropLine (line , "vendor_id :" , & cpu -> vendor )) ||
355
355
(cpuMHz -> length == 0 && ffParsePropLine (line , "cpu MHz static :" , cpuMHz )) || // This one cannot be detected because of early return
356
+ #elif __ia64__
357
+ (cpu -> name .length == 0 && ffParsePropLine (line , "model name :" , & cpu -> name )) ||
358
+ (cpu -> vendor .length == 0 && ffParsePropLine (line , "vendor :" , & cpu -> vendor )) ||
359
+ (cpuMHz -> length == 0 && ffParsePropLine (line , "cpu MHz :" , cpuMHz )) ||
356
360
#else
357
361
(cpu -> name .length == 0 && ffParsePropLine (line , "model name :" , & cpu -> name )) ||
358
362
(cpu -> name .length == 0 && ffParsePropLine (line , "model :" , & cpu -> name )) ||
You can’t perform that action at this time.
0 commit comments