Changeset 96b02eb9 in mainline for kernel/arch/abs32le
- Timestamp:
- 2010-12-14T12:52:38Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6b10dab
- Parents:
- 554debd
- Location:
- kernel/arch/abs32le
- Files:
-
- 2 edited
-
include/types.h (modified) (2 diffs)
-
src/abs32le.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/abs32le/include/types.h
r554debd r96b02eb9 46 46 typedef uint32_t ipl_t; 47 47 48 typedef uint32_t unative_t;48 typedef uint32_t sysarg_t; 49 49 typedef int32_t native_t; 50 50 typedef uint32_t atomic_count_t; … … 57 57 58 58 #define PRIdn PRId32 /**< Format for native_t. */ 59 #define PRIun PRIu32 /**< Format for unative_t. */60 #define PRIxn PRIx32 /**< Format for hexadecimal unative_t. */59 #define PRIun PRIu32 /**< Format for sysarg_t. */ 60 #define PRIxn PRIx32 /**< Format for hexadecimal sysarg_t. */ 61 61 #define PRIua PRIu32 /**< Format for atomic_count_t. */ 62 62 -
kernel/arch/abs32le/src/abs32le.c
r554debd r96b02eb9 86 86 } 87 87 88 unative_t sys_tls_set(unative_t addr)88 sysarg_t sys_tls_set(sysarg_t addr) 89 89 { 90 90 return EOK;
Note:
See TracChangeset
for help on using the changeset viewer.
