Changeset 7f1c620 in mainline for arch/ia64/include/types.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/types.h
r991779c5 r7f1c620 27 27 */ 28 28 29 29 /** @addtogroup ia64 30 30 * @{ 31 31 */ … … 38 38 #define NULL 0 39 39 40 typedef signed char __s8;41 typedef signed short int __s16;42 typedef signed int __s32;43 typedef signed long __s64;40 typedef signed char int8_t; 41 typedef signed short int int16_t; 42 typedef signed int int32_t; 43 typedef signed long int64_t; 44 44 45 typedef unsigned char __u8;46 typedef unsigned short __u16;47 typedef unsigned int __u32;48 typedef unsigned long __u64;45 typedef unsigned char uint8_t; 46 typedef unsigned short uint16_t; 47 typedef unsigned int uint32_t; 48 typedef unsigned long uint64_t; 49 49 50 51 typedef unsigned char __r8; /*Reserve byte*/ 50 typedef unsigned char __r8; /* Reserve byte */ 52 51 typedef unsigned short __r16; 53 52 typedef unsigned int __r32; 54 53 typedef unsigned long __r64; 55 typedef struct __r128{__r64 lo;__r64 hi;} __r128; 54 typedef struct __r128 { 55 __r64 lo; 56 __r64 hi; 57 } __r128; 56 58 59 typedef uint64_t uintptr_t; 60 typedef uint64_t pfn_t; 57 61 58 typedef __u64 __address; 59 typedef __u64 pfn_t; 62 typedef uint64_t ipl_t; 60 63 61 typedef __u64 ipl_t; 62 63 typedef __u64 __native; 64 typedef __s64 __snative; 64 typedef uint64_t unative_t; 65 typedef int64_t native_t; 65 66 66 67 typedef struct pte pte_t; … … 68 69 #endif 69 70 70 71 /** @} 71 72 */ 72 73
Note:
See TracChangeset
for help on using the changeset viewer.