#include <oskit/x86/cpuid.h>void cpu_info_min(struct cpu_info *id1, struct cpu_info *id2);
Determine the minimum (least-common-denominator) feature set of the two provided structures and return that. The new feature set is returned in id1.Typically used on SMP systems to determine the basic feature set common across all processors in the system regardless of type.
- id1, id2
- The CPU information structures to compare.