Changeset 7f1c620 in mainline for arch/amd64/include/cpuid.h
- Timestamp:
- 2006-07-04T17:17:56Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0ffa3ef5
- Parents:
- 991779c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/include/cpuid.h
r991779c5 r7f1c620 48 48 49 49 struct cpu_info { 50 __u32cpuid_eax;51 __u32cpuid_ebx;52 __u32cpuid_ecx;53 __u32cpuid_edx;50 uint32_t cpuid_eax; 51 uint32_t cpuid_ebx; 52 uint32_t cpuid_ecx; 53 uint32_t cpuid_edx; 54 54 } __attribute__ ((packed)); 55 55 56 56 extern int has_cpuid(void); 57 57 58 extern void cpuid( __u32cmd, cpu_info_t *info);58 extern void cpuid(uint32_t cmd, cpu_info_t *info); 59 59 60 60 61 extern __u64rdtsc(void);61 extern uint64_t rdtsc(void); 62 62 63 63 #endif /* __ASM__ */
Note:
See TracChangeset
for help on using the changeset viewer.