Changeset 912ee7c in mainline
- Timestamp:
- 2009-02-12T20:07:19Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7004747
- Parents:
- af75db9
- Location:
- kernel/arch
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/include/types.h
raf75db9 r912ee7c 27 27 */ 28 28 29 /** @addtogroup amd64 29 /** @addtogroup amd64 30 30 * @{ 31 31 */ … … 59 59 60 60 typedef uintptr_t ioport_t; 61 62 typedef struct { 63 } fncptr_t; 61 64 62 65 /**< Formats for uintptr_t, size_t, count_t and index_t */ -
kernel/arch/arm32/include/types.h
raf75db9 r912ee7c 65 65 typedef int32_t native_t; 66 66 67 typedef uintptr_t ioport_t; 68 69 typedef struct { 70 } fncptr_t; 71 67 72 #define PRIp "x" /**< Format for uintptr_t. */ 68 73 #define PRIs "u" /**< Format for size_t. */ -
kernel/arch/ia32/include/types.h
raf75db9 r912ee7c 60 60 typedef uintptr_t ioport_t; 61 61 62 typedef struct { 63 } fncptr_t; 64 62 65 #define PRIp "x" /**< Format for uintptr_t. */ 63 66 #define PRIs "u" /**< Format for size_t. */ -
kernel/arch/ia64/include/types.h
raf75db9 r912ee7c 68 68 typedef uintptr_t ioport_t; 69 69 70 typedef struct { 71 unative_t fnc; 72 unative_t gp; 73 } fncptr_t; 74 70 75 #define PRIp "lx" /**< Format for uintptr_t. */ 71 76 #define PRIs "lu" /**< Format for size_t. */ -
kernel/arch/mips32/include/types.h
raf75db9 r912ee7c 58 58 typedef int32_t native_t; 59 59 60 typedef uintptr_t ioport_t; 61 62 typedef struct { 63 } fncptr_t; 64 60 65 #define PRIp "x" /**< Format for uintptr_t. */ 61 66 #define PRIs "u" /**< Format for size_t. */ -
kernel/arch/ppc32/include/types.h
raf75db9 r912ee7c 58 58 typedef int32_t native_t; 59 59 60 typedef uintptr_t ioport_t; 61 62 typedef struct { 63 } fncptr_t; 64 60 65 /**< Formats for uintptr_t, size_t, count_t and index_t */ 61 66 #define PRIp "x" -
kernel/arch/sparc64/include/types.h
raf75db9 r912ee7c 60 60 typedef uintptr_t ioport_t; 61 61 62 typedef struct { 63 } fncptr_t; 64 62 65 /**< Formats for uintptr_t, size_t, count_t and index_t */ 63 66 #define PRIp "llx"
Note:
See TracChangeset
for help on using the changeset viewer.