int cpu_features[4];
for (int i = 0; i < 100000; i++) {
cpu_features[get_cur_cpu_number()] = cpuid_get_features();
usleep(100);
}
for (int j = 0; j < 4; j++)
printf("CPU %d features: %x\n", j, cpu_features[j]);
int cpu_features[4];
for (int i = 0; i < 100000; i++) {
cpu_features[get_cur_cpu_number()] = cpuid_get_features();
usleep(100);
}
for (int j = 0; j < 4; j++)
printf("CPU %d features: %x\n", j, cpu_features[j]);