Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2078 → Rev 2079

/trunk/kernel/arch/amd64/include/cpuid.h
46,12 → 46,12
 
#include <arch/types.h>
 
struct cpu_info {
typedef struct {
uint32_t cpuid_eax;
uint32_t cpuid_ebx;
uint32_t cpuid_ecx;
uint32_t cpuid_edx;
} __attribute__ ((packed));
} __attribute__ ((packed)) cpu_info_t;
 
extern int has_cpuid(void);