Changeset df217a6 in mainline
- Timestamp:
- 2011-07-23T20:21:56Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c62f2d0
- Parents:
- 65b4aac1 (diff), b9a46fc (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. - Files:
-
- 229 added
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.common
r65b4aac1 rdf217a6 138 138 $(USPACE_PATH)/app/blkdump/blkdump \ 139 139 $(USPACE_PATH)/app/bnchmark/bnchmark \ 140 $(USPACE_PATH)/app/cc/cc \ 141 $(USPACE_PATH)/app/ccom/ccom \ 142 $(USPACE_PATH)/app/ccom/mkext/cc_mkext \ 143 $(USPACE_PATH)/app/cpp/cpp \ 140 144 $(USPACE_PATH)/app/dltest/dltest \ 141 145 $(USPACE_PATH)/app/dltest2/dltest2 \ -
uspace/Makefile
r65b4aac1 rdf217a6 37 37 app/blkdump \ 38 38 app/bnchmark \ 39 app/cc \ 40 app/ccom \ 41 app/ccom/mkext \ 42 app/cpp \ 39 43 app/edit \ 40 44 app/ext2info \ -
uspace/lib/c/arch/abs32le/include/types.h
r65b4aac1 rdf217a6 51 51 typedef uint32_t size_t; 52 52 53 typedef int32_t intptr_t; 53 54 typedef uint32_t uintptr_t; 54 55 typedef uint32_t atomic_count_t; -
uspace/lib/c/arch/amd64/include/types.h
r65b4aac1 rdf217a6 51 51 typedef uint64_t size_t; 52 52 53 typedef int64_t intptr_t; 53 54 typedef uint64_t uintptr_t; 54 55 typedef uint64_t atomic_count_t; -
uspace/lib/c/arch/arm32/include/types.h
r65b4aac1 rdf217a6 52 52 typedef uint32_t size_t; 53 53 54 typedef int32_t intptr_t; 54 55 typedef uint32_t uintptr_t; 55 56 typedef uint32_t atomic_count_t; -
uspace/lib/c/arch/ia32/include/types.h
r65b4aac1 rdf217a6 51 51 typedef uint32_t size_t; 52 52 53 typedef int32_t intptr_t; 53 54 typedef uint32_t uintptr_t; 54 55 typedef uint32_t atomic_count_t; -
uspace/lib/c/arch/ia64/include/types.h
r65b4aac1 rdf217a6 61 61 typedef uint64_t size_t; 62 62 63 typedef int64_t intptr_t; 63 64 typedef uint64_t uintptr_t; 64 65 typedef uint64_t atomic_count_t; -
uspace/lib/c/arch/mips32/include/types.h
r65b4aac1 rdf217a6 52 52 typedef uint32_t size_t; 53 53 54 typedef int32_t intptr_t; 54 55 typedef uint32_t uintptr_t; 55 56 typedef uint32_t atomic_count_t; -
uspace/lib/c/arch/ppc32/include/types.h
r65b4aac1 rdf217a6 51 51 typedef uint32_t size_t; 52 52 53 typedef int32_t intptr_t; 53 54 typedef uint32_t uintptr_t; 54 55 typedef uint32_t atomic_count_t; -
uspace/lib/c/arch/sparc64/include/types.h
r65b4aac1 rdf217a6 51 51 typedef uint64_t size_t; 52 52 53 typedef int64_t intptr_t; 53 54 typedef uint64_t uintptr_t; 54 55 typedef uint64_t atomic_count_t; -
uspace/lib/posix/unistd.c
r65b4aac1 rdf217a6 89 89 { 90 90 /* Always returns false, because there is no easy way to find 91 <<<<<<< TREE 91 92 * out under HelenOS. */ 92 93 return 0; 94 ======= 95 * out under HelenOS. */ 96 return false; 97 >>>>>>> MERGE-SOURCE 93 98 } 94 99
Note:
See TracChangeset
for help on using the changeset viewer.