Changeset 5587cf7 in mainline for kernel/arch
- Timestamp:
- 2010-11-26T01:15:00Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3ebba9a
- Parents:
- 855e0d8
- Location:
- kernel/arch
- Files:
-
- 8 edited
-
abs32le/include/types.h (modified) (1 diff)
-
amd64/include/types.h (modified) (1 diff)
-
arm32/include/types.h (modified) (1 diff)
-
ia32/include/types.h (modified) (1 diff)
-
ia64/include/types.h (modified) (1 diff)
-
mips32/include/types.h (modified) (1 diff)
-
ppc32/include/types.h (modified) (1 diff)
-
sparc64/include/types.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/abs32le/include/types.h
r855e0d8 r5587cf7 53 53 } fncptr_t; 54 54 55 #define PRIp PRIx32 /**< Format for uintptr_t. */ 56 #define PRIs PRIu32 /**< Format for size_t. */ 55 #define INTN_C(c) INT32_C(c) 56 #define UINTN_C(c) UINT32_C(c) 57 57 58 #define PRIdn PRId32 /**< Format for native_t. */ 58 59 #define PRIun PRIu32 /**< Format for unative_t. */ 59 60 #define PRIxn PRIx32 /**< Format for hexadecimal unative_t. */ 61 #define PRIua PRIu32 /**< Format for atomic_count_t. */ 60 62 61 63 #endif -
kernel/arch/amd64/include/types.h
r855e0d8 r5587cf7 50 50 } fncptr_t; 51 51 52 #define PRIp PRIx64 /**< Format for uintptr_t. */ 53 #define PRIs PRIu64 /**< Format for size_t. */ 52 #define INTN_C(c) INT64_C(c) 53 #define UINTN_C(c) UINT64_C(c) 54 54 55 #define PRIdn PRId64 /**< Format for native_t. */ 55 56 #define PRIun PRIu64 /**< Format for unative_t. */ 56 57 #define PRIxn PRIx64 /**< Format for hexadecimal unative_t. */ 58 #define PRIua PRIu64 /**< Format for atomic_count_t. */ 57 59 58 60 #endif -
kernel/arch/arm32/include/types.h
r855e0d8 r5587cf7 57 57 } fncptr_t; 58 58 59 #define PRIp PRIx32 /**< Format for uintptr_t. */ 60 #define PRIs PRIu32 /**< Format for size_t. */ 59 #define INTN_C(c) INT32_C(c) 60 #define UINTN_C(c) UINT32_C(c) 61 61 62 #define PRIdn PRId32 /**< Format for native_t. */ 62 63 #define PRIun PRIu32 /**< Format for unative_t. */ 63 64 #define PRIxn PRIx32 /**< Format for hexadecimal unative_t. */ 65 #define PRIua PRIu32 /**< Format for atomic_count_t. */ 64 66 65 67 #endif -
kernel/arch/ia32/include/types.h
r855e0d8 r5587cf7 50 50 } fncptr_t; 51 51 52 #define PRIp PRIx32 /**< Format for uintptr_t. */ 53 #define PRIs PRIu32 /**< Format for size_t. */ 52 #define INTN_C(c) INT32_C(c) 53 #define UINTN_C(c) UINT32_C(c) 54 54 55 #define PRIdn PRId32 /**< Format for native_t. */ 55 56 #define PRIun PRIu32 /**< Format for unative_t. */ 56 57 #define PRIxn PRIx32 /**< Format for hexadecimal unative_t. */ 58 #define PRIua PRIu32 /**< Format for atomic_count_t. */ 57 59 58 60 #endif -
kernel/arch/ia64/include/types.h
r855e0d8 r5587cf7 52 52 } __attribute__((may_alias)) fncptr_t; 53 53 54 #define PRIp PRIx64 /**< Format for uintptr_t. */ 55 #define PRIs PRIu64 /**< Format for size_t. */ 54 #define INTN_C(c) INT64_C(c) 55 #define UINTN_C(c) UINT64_C(c) 56 56 57 #define PRIdn PRId64 /**< Format for native_t. */ 57 58 #define PRIun PRIu64 /**< Format for unative_t. */ 58 59 #define PRIxn PRIx64 /**< Format for hexadecimal unative_t. */ 60 #define PRIua PRIu64 /**< Format for atomic_count_t. */ 59 61 60 62 #endif -
kernel/arch/mips32/include/types.h
r855e0d8 r5587cf7 50 50 } fncptr_t; 51 51 52 #define PRIp PRIx32 /**< Format for uintptr_t. */ 53 #define PRIs PRIu32 /**< Format for size_t. */ 52 #define INTN_C(c) INT32_C(c) 53 #define UINTN_C(c) UINT32_C(c) 54 54 55 #define PRIdn PRId32 /**< Format for native_t. */ 55 56 #define PRIun PRIu32 /**< Format for unative_t. */ 56 57 #define PRIxn PRIx32 /**< Format for hexadecimal unative_t. */ 58 #define PRIua PRIu32 /**< Format for atomic_count_t. */ 57 59 58 60 #endif -
kernel/arch/ppc32/include/types.h
r855e0d8 r5587cf7 50 50 } fncptr_t; 51 51 52 #define PRIp PRIx32 /**< Format for uintptr_t. */ 53 #define PRIs PRIu32 /**< Format for size_t. */ 52 #define INTN_C(c) INT32_C(c) 53 #define UINTN_C(c) UINT32_C(c) 54 54 55 #define PRIdn PRId32 /**< Format for native_t. */ 55 56 #define PRIun PRIu32 /**< Format for unative_t. */ 56 57 #define PRIxn PRIx32 /**< Format for hexadecimal unative_t. */ 58 #define PRIua PRIu32 /**< Format for atomic_count_t. */ 57 59 58 60 #endif -
kernel/arch/sparc64/include/types.h
r855e0d8 r5587cf7 52 52 typedef uint8_t asi_t; 53 53 54 #define PRIp PRIx64 /**< Format for uintptr_t. */ 55 #define PRIs PRIu64 /**< Format for size_t. */ 54 #define INTN_C(c) INT64_C(c) 55 #define UINTN_C(c) UINT64_C(c) 56 56 57 #define PRIdn PRId64 /**< Format for native_t. */ 57 58 #define PRIun PRIu64 /**< Format for unative_t. */ 58 59 #define PRIxn PRIx64 /**< Format for hexadecimal unative_t. */ 60 #define PRIua PRIu64 /**< Format for atomic_count_t. */ 59 61 60 62 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
