Changes in / [27eddb52:b9a46fc] in mainline
- Files:
-
- 232 added
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.common
r27eddb52 rb9a46fc 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
r27eddb52 rb9a46fc 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
r27eddb52 rb9a46fc 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
r27eddb52 rb9a46fc 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
r27eddb52 rb9a46fc 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
r27eddb52 rb9a46fc 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
r27eddb52 rb9a46fc 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
r27eddb52 rb9a46fc 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
r27eddb52 rb9a46fc 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
r27eddb52 rb9a46fc 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
r27eddb52 rb9a46fc 89 89 { 90 90 /* Always returns false, because there is no easy way to find 91 91 * out under HelenOS. */ 92 92 return false; 93 93 }
Note:
See TracChangeset
for help on using the changeset viewer.