b385f97e3e
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10323 a95241bf-73f2-0310-859d-f6bbb57e9c96
24 lines
475 B
C
24 lines
475 B
C
/*
|
|
* Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _KERNEL_ARCH_x86_SYSTEM_INFO_H
|
|
#define _KERNEL_ARCH_x86_SYSTEM_INFO_H
|
|
|
|
|
|
#include <OS.h>
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
status_t get_current_cpuid(cpuid_info *info, uint32 eax);
|
|
status_t _user_get_cpuid(cpuid_info *info, uint32 eax, uint32 cpu);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _KRENEL_ARCH_x86_SYSTEM_INFO_H */
|