Changeset 76ca3f7 in mainline for kernel/arch/arm32/include/types.h
- Timestamp:
- 2010-03-23T20:49:54Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e417b96
- Parents:
- b48ebd19 (diff), 63f8966 (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
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/include/types.h
rb48ebd19 r76ca3f7 43 43 #endif 44 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 55 45 typedef uint32_t size_t; 56 46 … … 67 57 } fncptr_t; 68 58 69 #define PRIp "x" 70 #define PRIs "u" 59 #define PRIp "x" /**< Format for uintptr_t. */ 60 #define PRIs "u" /**< Format for size_t. */ 71 61 72 #define PRId8 "d" 73 #define PRId16 "d" 74 #define PRId32 "d" 75 #define PRId64 "lld" 76 #define PRIdn "d" 62 #define PRId8 "d" /**< Format for int8_t. */ 63 #define PRId16 "d" /**< Format for int16_t. */ 64 #define PRId32 "d" /**< Format for int32_t. */ 65 #define PRId64 "lld" /**< Format for int64_t. */ 66 #define PRIdn "d" /**< Format for native_t. */ 77 67 78 #define PRIu8 "u" 79 #define PRIu16 "u" 80 #define PRIu32 "u" 81 #define PRIu64 "llu" 82 #define PRIun "u" 68 #define PRIu8 "u" /**< Format for uint8_t. */ 69 #define PRIu16 "u" /**< Format for uint16_t. */ 70 #define PRIu32 "u" /**< Format for uint32_t. */ 71 #define PRIu64 "llu" /**< Format for uint64_t. */ 72 #define PRIun "u" /**< Format for unative_t. */ 83 73 84 #define PRIx8 "x" 85 #define PRIx16 "x" 86 #define PRIx32 "x" 87 #define PRIx64 "llx" 88 #define PRIxn "x" 74 #define PRIx8 "x" /**< Format for hexadecimal (u)int8_t. */ 75 #define PRIx16 "x" /**< Format for hexadecimal (u)int16_t. */ 76 #define PRIx32 "x" /**< Format for hexadecimal (u)uint32_t. */ 77 #define PRIx64 "llx" /**< Format for hexadecimal (u)int64_t. */ 78 #define PRIxn "x" /**< Format for hexadecimal (u)native_t. */ 89 79 90 80 #endif
Note:
See TracChangeset
for help on using the changeset viewer.