Changeset f429331 in mainline for kernel/arch/amd64/include
- Timestamp:
- 2007-01-21T18:52:11Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- da1f9dc
- Parents:
- 8dbc18c
- Location:
- kernel/arch/amd64/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/include/cpu.h
r8dbc18c rf429331 58 58 #include <arch/pm.h> 59 59 60 struct cpu_arch{60 typedef struct { 61 61 int vendor; 62 62 int family; … … 66 66 67 67 count_t iomapver_copy; /** Copy of TASK's I/O Permission bitmap generation count. */ 68 } ;68 } cpu_arch_t; 69 69 70 70 struct star_msr { -
kernel/arch/amd64/include/cpuid.h
r8dbc18c rf429331 47 47 #include <arch/types.h> 48 48 49 struct cpu_info{49 typedef struct { 50 50 uint32_t cpuid_eax; 51 51 uint32_t cpuid_ebx; 52 52 uint32_t cpuid_ecx; 53 53 uint32_t cpuid_edx; 54 } __attribute__ ((packed)) ;54 } __attribute__ ((packed)) cpu_info_t; 55 55 56 56 extern int has_cpuid(void);
Note:
See TracChangeset
for help on using the changeset viewer.