Changeset 10d65d70 in mainline
- Timestamp:
- 2018-09-29T14:39:54Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 99170e0c
- Parents:
- dc68f72
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-09-29 14:11:34)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-09-29 14:39:54)
- Files:
-
- 13 deleted
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
abi/include/abi/sysinfo.h
rdc68f72 r10d65d70 37 37 #define ABI_SYSINFO_H_ 38 38 39 #include < abi/bool.h>39 #include <stdbool.h> 40 40 #include <abi/proc/task.h> 41 41 #include <abi/proc/thread.h> -
boot/arch/riscv64/include/arch/asm.h
rdc68f72 r10d65d70 31 31 32 32 #include <stddef.h> 33 #include <stdint.h> 33 34 34 35 extern char htif_page[]; 35 36 extern char pt_page[]; 36 37 37 extern void jump_to_kernel(uintptr_t) 38 __attribute__((noreturn)); 38 extern _Noreturn void jump_to_kernel(uintptr_t); 39 39 40 40 #endif -
boot/arch/riscv64/include/arch/ucb.h
rdc68f72 r10d65d70 37 37 38 38 #include <stddef.h> 39 #include <stdint.h> 39 40 40 41 extern volatile uint64_t tohost; -
boot/genarch/include/genarch/ofw.h
rdc68f72 r10d65d70 30 30 #define BOOT_OFW_H_ 31 31 32 #include <stdarg.h> 32 33 #include <stddef.h> 33 #include <std arg.h>34 #include <stdint.h> 34 35 35 36 #define MEMMAP_MAX_RECORDS 32 -
boot/generic/include/balloc.h
rdc68f72 r10d65d70 31 31 32 32 #include <stddef.h> 33 #include <stdint.h> 33 34 34 35 typedef struct { -
boot/generic/src/inflate.c
rdc68f72 r10d65d70 67 67 #include <stdbool.h> 68 68 #include <stddef.h> 69 #include <stdint.h> 69 70 #include <errno.h> 70 71 #include <memstr.h> -
boot/generic/src/memstr.c
rdc68f72 r10d65d70 29 29 #include <memstr.h> 30 30 #include <stddef.h> 31 #include <stdint.h> 31 32 32 33 /** Move memory block without overlapping. -
boot/generic/src/printf_core.c
rdc68f72 r10d65d70 39 39 #include <stdbool.h> 40 40 #include <stddef.h> 41 #include <stdint.h> 41 42 #include <macros.h> 42 43 #include <str.h> -
boot/generic/src/str.c
rdc68f72 r10d65d70 101 101 #include <stdbool.h> 102 102 #include <stddef.h> 103 #include <stdint.h> 103 104 #include <str.h> 104 105 -
kernel/arch/riscv64/include/arch/mm/km.h
rdc68f72 r10d65d70 38 38 #include <stdbool.h> 39 39 #include <stddef.h> 40 #include <stdint.h> 40 41 41 42 #define KM_RISCV64_IDENTITY_START UINT64_C(0xffff800000000000) -
kernel/generic/src/cap/cap.c
rdc68f72 r10d65d70 81 81 #include <adt/list.h> 82 82 83 #include <limits.h> 83 84 #include <stdint.h> 84 85 -
kernel/test/print/print2.c
rdc68f72 r10d65d70 30 30 #include <stddef.h> 31 31 #include <test.h> 32 #include <typedefs.h> 32 33 33 34 const char *test_print2(void) -
kernel/test/print/print4.c
rdc68f72 r10d65d70 30 30 #include <stddef.h> 31 31 #include <test.h> 32 #include <typedefs.h> 32 33 33 34 const char *test_print4(void) -
uspace/lib/cpp/include/cstdlib
rdc68f72 r10d65d70 36 36 extern "C" { 37 37 #include <stdlib.h> 38 #include <_bits/ssize_t.h> 38 39 } 39 40 } -
uspace/lib/math/test/rounding.c
rdc68f72 r10d65d70 30 30 #include <math.h> 31 31 #include <inttypes.h> 32 #include <float.h> 32 33 33 34 PCUT_INIT; … … 278 279 279 280 0.0, 280 FLT_ DENORM_MIN, /* smallest denormal > 0 */281 FLT_TRUE_MIN, /* smallest denormal > 0 */ 281 282 FLT_MIN, /* smallest normal > 0 */ 282 283 0.5 - (FLT_EPSILON / 4.), … … 378 379 379 380 -0.0, 380 -FLT_ DENORM_MIN, /* smallest denormal > 0 */381 -FLT_TRUE_MIN, /* smallest denormal > 0 */ 381 382 -FLT_MIN, /* smallest normal > 0 */ 382 383 -(0.5 - (FLT_EPSILON / 4.)),
Note:
See TracChangeset
for help on using the changeset viewer.