Changeset 7f1c620 in mainline for arch/ia64/include/register.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/ia64/include/register.h
r991779c5 r7f1c620 137 137 /** Processor Status Register. */ 138 138 union psr { 139 __u64value;139 uint64_t value; 140 140 struct { 141 141 unsigned : 1; … … 180 180 /** Register Stack Configuration Register */ 181 181 union rsc { 182 __u64value;182 uint64_t value; 183 183 struct { 184 184 unsigned mode : 2; … … 193 193 /** External Interrupt Vector Register */ 194 194 union cr_ivr { 195 __u8vector;196 __u64value;195 uint8_t vector; 196 uint64_t value; 197 197 }; 198 198 … … 207 207 unsigned mmi: 1; /**< Mask Maskable Interrupts. */ 208 208 } __attribute__ ((packed)); 209 __u64value;209 uint64_t value; 210 210 }; 211 211 … … 221 221 unsigned m : 1; /**< Mask. */ 222 222 } __attribute__ ((packed)); 223 __u64value;223 uint64_t value; 224 224 }; 225 225 … … 235 235 unsigned ge_code : 4; 236 236 } __attribute__ ((packed)); 237 __u16code;237 uint16_t code; 238 238 }; 239 __u8vector;239 uint8_t vector; 240 240 unsigned : 8; 241 241 unsigned x : 1; /**< Execute exception. */ … … 252 252 unsigned : 20; 253 253 } __attribute__ ((packed)); 254 __u64value;254 uint64_t value; 255 255 }; 256 256 … … 260 260 union cpuid3 { 261 261 struct { 262 __u8number;263 __u8revision;264 __u8model;265 __u8family;266 __u8archrev;267 } __attribute__ ((packed)); 268 __u64value;262 uint8_t number; 263 uint8_t revision; 264 uint8_t model; 265 uint8_t family; 266 uint8_t archrev; 267 } __attribute__ ((packed)); 268 uint64_t value; 269 269 }; 270 270
Note:
See TracChangeset
for help on using the changeset viewer.