Changeset b63f8569 in mainline
- Timestamp:
- 2008-06-03T14:58:53Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f4c2b6a
- Parents:
- cd8ad52
- Location:
- kernel/arch
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/include/types.h
rcd8ad52 rb63f8569 36 36 #define KERN_amd64_TYPES_H_ 37 37 38 #define NULL 039 #define false 040 #define true 141 42 38 typedef signed char int8_t; 43 39 typedef signed short int16_t; … … 62 58 typedef int64_t native_t; 63 59 64 typedef uint8_t bool; 65 typedef uint64_t thread_id_t; 66 typedef uint64_t task_id_t; 67 typedef uint32_t context_id_t; 60 /**< Formats for uintptr_t, size_t, count_t and index_t */ 61 #define PRIp "llx" 62 #define PRIs "llu" 63 #define PRIc "llu" 64 #define PRIi "llu" 68 65 69 typedef int32_t inr_t; 70 typedef int32_t devno_t; 66 /**< Formats for (u)int8_t, (u)int16_t, (u)int32_t, (u)int64_t and (u)native_t */ 67 #define PRId8 "d" 68 #define PRId16 "d" 69 #define PRId32 "d" 70 #define PRId64 "lld" 71 #define PRIdn "lld" 72 73 #define PRIu8 "u" 74 #define PRIu16 "u" 75 #define PRIu32 "u" 76 #define PRIu64 "llu" 77 #define PRIun "llu" 78 79 #define PRIx8 "x" 80 #define PRIx16 "x" 81 #define PRIx32 "x" 82 #define PRIx64 "llx" 83 #define PRIxn "llx" 71 84 72 85 /** Page Table Entry. */ -
kernel/arch/arm32/include/types.h
rcd8ad52 rb63f8569 43 43 #endif 44 44 45 #define NULL 046 #define false 047 #define true 148 49 45 typedef signed char int8_t; 50 46 typedef signed short int16_t; … … 69 65 typedef int32_t native_t; 70 66 71 typedef uint8_t bool;72 typedef uint64_t thread_id_t;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;78 79 67 80 68 /** Page table entry. -
kernel/arch/ia32/include/types.h
rcd8ad52 rb63f8569 36 36 #define KERN_ia32_TYPES_H_ 37 37 38 #define NULL 039 #define false 040 #define true 141 42 38 typedef signed char int8_t; 43 39 typedef signed short int16_t; … … 62 58 typedef int32_t native_t; 63 59 64 typedef uint8_t bool; 65 typedef uint64_t thread_id_t; 66 typedef uint64_t task_id_t; 67 typedef uint32_t context_id_t; 60 /**< Formats for uintptr_t, size_t, count_t and index_t */ 61 #define PRIp "x" 62 #define PRIs "u" 63 #define PRIc "u" 64 #define PRIi "u" 68 65 69 typedef int32_t inr_t; 70 typedef int32_t devno_t; 66 /**< Formats for (u)int8_t, (u)int16_t, (u)int32_t, (u)int64_t and (u)native_t */ 67 #define PRId8 "d" 68 #define PRId16 "d" 69 #define PRId32 "d" 70 #define PRId64 "lld" 71 #define PRIdn "d" 72 73 #define PRIu8 "u" 74 #define PRIu16 "u" 75 #define PRIu32 "u" 76 #define PRIu64 "llu" 77 #define PRIun "u" 78 79 #define PRIx8 "x" 80 #define PRIx16 "x" 81 #define PRIx32 "x" 82 #define PRIx64 "llx" 83 #define PRIxn "x" 71 84 72 85 /** Page Table Entry. */ -
kernel/arch/ia32xen/include/types.h
rcd8ad52 rb63f8569 62 62 typedef int32_t native_t; 63 63 64 typedef uint8_t bool;65 typedef uint64_t thread_id_t;66 typedef uint64_t task_id_t;67 typedef uint32_t context_id_t;68 69 typedef int32_t inr_t;70 typedef int32_t devno_t;71 72 64 /** Page Table Entry. */ 73 65 typedef struct { -
kernel/arch/ia64/include/types.h
rcd8ad52 rb63f8569 36 36 #define KERN_ia64_TYPES_H_ 37 37 38 #define NULL 039 #define false 040 #define true 141 42 38 typedef signed char int8_t; 43 39 typedef signed short int16_t; … … 70 66 typedef int64_t native_t; 71 67 72 typedef uint8_t bool;73 typedef uint64_t thread_id_t;74 typedef uint64_t task_id_t;75 typedef uint32_t context_id_t;76 77 typedef int32_t inr_t;78 typedef int32_t devno_t;79 80 68 #endif 81 69 -
kernel/arch/mips32/include/types.h
rcd8ad52 rb63f8569 36 36 #define KERN_mips32_TYPES_H_ 37 37 38 #define NULL 039 #define false 040 #define true 141 42 38 typedef signed char int8_t; 43 39 typedef signed short int16_t; … … 62 58 typedef int32_t native_t; 63 59 64 typedef uint8_t bool;65 typedef uint64_t thread_id_t;66 typedef uint64_t task_id_t;67 typedef uint32_t context_id_t;68 69 typedef int32_t inr_t;70 typedef int32_t devno_t;71 72 60 /** Page Table Entry. */ 73 61 typedef struct { -
kernel/arch/ppc32/include/types.h
rcd8ad52 rb63f8569 36 36 #define KERN_ppc32_TYPES_H_ 37 37 38 #define NULL 039 #define false 040 #define true 141 42 38 typedef signed char int8_t; 43 39 typedef signed short int16_t; … … 62 58 typedef int32_t native_t; 63 59 64 typedef uint8_t bool; 65 typedef uint64_t thread_id_t; 66 typedef uint64_t task_id_t; 67 typedef uint32_t context_id_t; 60 /**< Formats for uintptr_t, size_t, count_t and index_t */ 61 #define PRIp "x" 62 #define PRIs "u" 63 #define PRIc "u" 64 #define PRIi "u" 68 65 69 typedef int32_t inr_t; 70 typedef int32_t devno_t; 66 /**< Formats for (u)int8_t, (u)int16_t, (u)int32_t, (u)int64_t and (u)native_t */ 67 #define PRId8 "d" 68 #define PRId16 "d" 69 #define PRId32 "d" 70 #define PRId64 "lld" 71 #define PRIdn "d" 72 73 #define PRIu8 "u" 74 #define PRIu16 "u" 75 #define PRIu32 "u" 76 #define PRIu64 "llu" 77 #define PRIun "u" 78 79 #define PRIx8 "x" 80 #define PRIx16 "x" 81 #define PRIx32 "x" 82 #define PRIx64 "llx" 83 #define PRIxn "x" 71 84 72 85 /** Page Table Entry. */ -
kernel/arch/ppc64/include/types.h
rcd8ad52 rb63f8569 36 36 #define KERN_ppc64_TYPES_H_ 37 37 38 #define NULL 039 #define false 040 #define true 141 42 38 typedef signed char int8_t; 43 39 typedef signed short int16_t; … … 62 58 typedef int64_t native_t; 63 59 64 typedef uint8_t bool;65 typedef uint64_t thread_id_t;66 typedef uint64_t task_id_t;67 typedef uint32_t context_id_t;68 69 typedef int32_t inr_t;70 typedef int32_t devno_t;71 72 60 /** Page Table Entry. */ 73 61 typedef struct { -
kernel/arch/sparc64/include/types.h
rcd8ad52 rb63f8569 36 36 #define KERN_sparc64_TYPES_H_ 37 37 38 #define NULL 039 #define false 040 #define true 141 42 38 typedef signed char int8_t; 43 39 typedef signed short int16_t; … … 62 58 typedef int64_t native_t; 63 59 64 typedef uint8_t bool; 65 typedef uint64_t thread_id_t; 66 typedef uint64_t task_id_t; 67 typedef uint32_t context_id_t; 60 /**< Formats for uintptr_t, size_t, count_t and index_t */ 61 #define PRIp "llx" 62 #define PRIs "llu" 63 #define PRIc "llu" 64 #define PRIi "llu" 68 65 69 typedef int32_t inr_t; 70 typedef int32_t devno_t; 66 /**< Formats for (u)int8_t, (u)int16_t, (u)int32_t, (u)int64_t and (u)native_t */ 67 #define PRId8 "d" 68 #define PRId16 "d" 69 #define PRId32 "d" 70 #define PRId64 "lld" 71 #define PRIdn "lld" 72 73 #define PRIu8 "u" 74 #define PRIu16 "u" 75 #define PRIu32 "u" 76 #define PRIu64 "llu" 77 #define PRIun "llu" 78 79 #define PRIx8 "x" 80 #define PRIx16 "x" 81 #define PRIx32 "x" 82 #define PRIx64 "llx" 83 #define PRIxn "llx" 84 71 85 typedef uint8_t asi_t; 72 86
Note:
See TracChangeset
for help on using the changeset viewer.