Rev 3536 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3536 | Rev 4377 | ||
---|---|---|---|
Line 49... | Line 49... | ||
49 | 49 | ||
50 | #include <arch/pm.h> |
50 | #include <arch/pm.h> |
51 | #include <arch/asm.h> |
51 | #include <arch/asm.h> |
52 | 52 | ||
53 | typedef struct { |
53 | typedef struct { |
54 | int vendor; |
54 | unsigned int vendor; |
55 | int family; |
55 | unsigned int family; |
56 | int model; |
56 | unsigned int model; |
57 | int stepping; |
57 | unsigned int stepping; |
58 | struct tss *tss; |
58 | tss_t *tss; |
59 | 59 | ||
60 | count_t iomapver_copy; /** Copy of TASK's I/O Permission bitmap generation count. */ |
60 | count_t iomapver_copy; /** Copy of TASK's I/O Permission bitmap generation count. */ |
61 | } cpu_arch_t; |
61 | } cpu_arch_t; |
62 | 62 | ||
63 | #endif |
63 | #endif |