Changeset c621f4aa in mainline for kernel/arch/amd64/include/types.h
- Timestamp:
- 2010-07-25T10:11:13Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/fix-logger-deadlock, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 377cce8
- Parents:
- 24a2517 (diff), a2da43c (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/amd64/include/types.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/include/types.h
r24a2517 rc621f4aa 36 36 #define KERN_amd64_TYPES_H_ 37 37 38 typedef signed char int8_t;39 typedef signed short int16_t;40 typedef signed int int32_t;41 typedef signed long long int64_t;42 43 typedef unsigned char uint8_t;44 typedef unsigned short uint16_t;45 typedef unsigned int uint32_t;46 typedef unsigned long long uint64_t;47 48 38 typedef uint64_t size_t; 49 39 … … 55 45 typedef uint64_t unative_t; 56 46 typedef int64_t native_t; 47 typedef uint64_t atomic_count_t; 57 48 58 49 typedef struct { 59 50 } fncptr_t; 60 51 61 /* *<Formats for uintptr_t, size_t */62 #define PRIp "llx"63 #define PRIs "llu"52 /* Formats for uintptr_t, size_t */ 53 #define PRIp "llx" 54 #define PRIs "llu" 64 55 65 /* *<Formats for (u)int8_t, (u)int16_t, (u)int32_t, (u)int64_t and (u)native_t */66 #define PRId8 "d"67 #define PRId16 "d"68 #define PRId32 "d"69 #define PRId64 "lld"70 #define PRIdn "lld"56 /* Formats for (u)int8_t, (u)int16_t, (u)int32_t, (u)int64_t and (u)native_t */ 57 #define PRId8 "d" 58 #define PRId16 "d" 59 #define PRId32 "d" 60 #define PRId64 "lld" 61 #define PRIdn "lld" 71 62 72 #define PRIu8 "u"73 #define PRIu16 "u"74 #define PRIu32 "u"75 #define PRIu64 "llu"76 #define PRIun "llu"63 #define PRIu8 "u" 64 #define PRIu16 "u" 65 #define PRIu32 "u" 66 #define PRIu64 "llu" 67 #define PRIun "llu" 77 68 78 #define PRIx8 "x"79 #define PRIx16 "x"80 #define PRIx32 "x"81 #define PRIx64 "llx"82 #define PRIxn "llx"69 #define PRIx8 "x" 70 #define PRIx16 "x" 71 #define PRIx32 "x" 72 #define PRIx64 "llx" 73 #define PRIxn "llx" 83 74 84 75 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
