xref: /haiku/src/system/libroot/os/arch/x86/system_info.c (revision 899e0ef82b5624ace2ccfa5f5a58c8ebee54aaef)
1 /*
2  * Copyright 2003-2004, Axel Dörfler, axeld@pinc-software.de.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include <OS.h>
8 #include <syscalls.h>
9 
10 
11 status_t
12 get_cpuid(cpuid_info *info, uint32 eaxRegister, uint32 cpuNum)
13 {
14 	return _kern_get_cpuid(info, eaxRegister, cpuNum);
15 }
16 
17