Changeset b3f8fb7 in mainline for kernel/arch/ia64/include/types.h
- Timestamp:
- 2007-01-28T13:25:49Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8e8c1a5
- Parents:
- 1ba41c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/include/types.h
r1ba41c5 rb3f8fb7 36 36 #define KERN_ia64_TYPES_H_ 37 37 38 #define NULL 0 38 #define NULL 0 39 #define false 0 40 #define true 1 39 41 40 42 typedef signed char int8_t; 41 typedef signed short int int16_t;43 typedef signed short int16_t; 42 44 typedef signed int int32_t; 43 45 typedef signed long int64_t; 46 typedef struct { 47 int64_t lo; 48 int64_t hi; 49 } int128_t; 44 50 45 51 typedef unsigned char uint8_t; … … 47 53 typedef unsigned int uint32_t; 48 54 typedef unsigned long uint64_t; 55 typedef struct { 56 uint64_t lo; 57 uint64_t hi; 58 } uint128_t; 49 59 50 typedef unsigned char __r8; /* Reserve byte */ 51 typedef unsigned short __r16; 52 typedef unsigned int __r32; 53 typedef unsigned long __r64; 54 typedef struct __r128 { 55 __r64 lo; 56 __r64 hi; 57 } __r128; 60 typedef uint64_t size_t; 61 typedef uint64_t count_t; 62 typedef uint64_t index_t; 58 63 59 64 typedef uint64_t uintptr_t; … … 65 70 typedef int64_t native_t; 66 71 67 typedef struct pte pte_t; 72 typedef uint8_t bool; 73 typedef uint64_t task_id_t; 74 typedef uint32_t context_id_t; 75 76 typedef int32_t inr_t; 77 typedef int32_t devno_t; 68 78 69 79 #endif
Note:
See TracChangeset
for help on using the changeset viewer.