Changeset 46c20c8 in mainline for kernel/arch/arm32/include/types.h
- Timestamp:
- 2010-11-26T20:08:10Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 45df59a
- Parents:
- fb150d78 (diff), ffdd2b9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
kernel/arch/arm32/include/types.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/include/types.h
rfb150d78 r46c20c8 27 27 */ 28 28 29 /** @addtogroup arm32 29 /** @addtogroup arm32 30 30 * @{ 31 31 */ … … 38 38 39 39 #ifndef DOXYGEN 40 # define ATTRIBUTE_PACKED __attribute__((packed))40 #define ATTRIBUTE_PACKED __attribute__((packed)) 41 41 #else 42 #define ATTRIBUTE_PACKED42 #define ATTRIBUTE_PACKED 43 43 #endif 44 45 typedef signed char int8_t;46 typedef signed short int16_t;47 typedef signed long int32_t;48 typedef signed long long int64_t;49 50 typedef unsigned char uint8_t;51 typedef unsigned short uint16_t;52 typedef unsigned long uint32_t;53 typedef unsigned long long uint64_t;54 44 55 45 typedef uint32_t size_t; … … 62 52 typedef uint32_t unative_t; 63 53 typedef int32_t native_t; 54 typedef uint32_t atomic_count_t; 64 55 65 56 typedef struct { 66 57 } fncptr_t; 67 58 68 #define PRIp "x" /**< Format for uintptr_t. */69 #define PRIs "u" /**< Format for size_t. */59 #define INTN_C(c) INT32_C(c) 60 #define UINTN_C(c) UINT32_C(c) 70 61 71 #define PRId8 "d" /**< Format for int8_t. */ 72 #define PRId16 "d" /**< Format for int16_t. */ 73 #define PRId32 "d" /**< Format for int32_t. */ 74 #define PRId64 "lld" /**< Format for int64_t. */ 75 #define PRIdn "d" /**< Format for native_t. */ 76 77 #define PRIu8 "u" /**< Format for uint8_t. */ 78 #define PRIu16 "u" /**< Format for uint16_t. */ 79 #define PRIu32 "u" /**< Format for uint32_t. */ 80 #define PRIu64 "llu" /**< Format for uint64_t. */ 81 #define PRIun "u" /**< Format for unative_t. */ 82 83 #define PRIx8 "x" /**< Format for hexadecimal (u)int8_t. */ 84 #define PRIx16 "x" /**< Format for hexadecimal (u)int16_t. */ 85 #define PRIx32 "x" /**< Format for hexadecimal (u)uint32_t. */ 86 #define PRIx64 "llx" /**< Format for hexadecimal (u)int64_t. */ 87 #define PRIxn "x" /**< Format for hexadecimal (u)native_t. */ 62 #define PRIdn PRId32 /**< Format for native_t. */ 63 #define PRIun PRIu32 /**< Format for unative_t. */ 64 #define PRIxn PRIx32 /**< Format for hexadecimal unative_t. */ 65 #define PRIua PRIu32 /**< Format for atomic_count_t. */ 88 66 89 67 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
