swh:1:snp:c3bf2749e3476071fa748f67b0ffa2fdc5fe49d9
Raw File
Tip revision: e783362eb54cd99b2cac8b3a9aeac942e6f6ac07 authored by Linus Torvalds on 23 January 2022, 08:12:53 UTC
Linux 5.17-rc1
Tip revision: e783362
test-get_cpuid.c
// SPDX-License-Identifier: GPL-2.0
#include <cpuid.h>

int main(void)
{
	unsigned int eax = 0, ebx = 0, ecx = 0, edx = 0;
	return __get_cpuid(0x15, &eax, &ebx, &ecx, &edx);
}
back to top