Changeset 7a99507 in mainline
- Timestamp:
- 2017-06-04T21:11:35Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9780584
- Parents:
- d735e2e
- Location:
- boot
- Files:
-
- 21 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/arm32/include/mm.h
rd735e2e r7a99507 42 42 #ifndef BOOT_arm32__MM_H 43 43 #define BOOT_arm32__MM_H 44 45 #include <stddef.h>46 44 47 45 /** Describe "section" page table entry (one-level paging with 1 MB sized pages). */ -
boot/arch/arm32/include/types.h
rd735e2e r7a99507 37 37 #define BOOT_arm32_TYPES_H 38 38 39 #include <arch/common.h> 40 39 41 #define TASKMAP_MAX_RECORDS 32 40 42 #define BOOTINFO_TASK_NAME_BUFLEN 32 -
boot/arch/arm32/src/mm.c
rd735e2e r7a99507 34 34 */ 35 35 36 #include <std def.h>36 #include <stdint.h> 37 37 #include <arch/asm.h> 38 38 #include <arch/mm.h> -
boot/arch/arm32/src/putchar.c
rd735e2e r7a99507 36 36 */ 37 37 38 #include <stddef.h>39 38 #include <arch/main.h> 40 39 #include <putchar.h> 40 #include <stddef.h> 41 #include <stdint.h> 41 42 #include <str.h> 42 43 -
boot/arch/ia64/include/pal.h
rd735e2e r7a99507 32 32 #include <arch/types.h> 33 33 #include <stddef.h> 34 #include <stdint.h> 34 35 35 36 /* -
boot/arch/ia64/include/sal.h
rd735e2e r7a99507 32 32 #include <arch/types.h> 33 33 #include <stddef.h> 34 #include <stdint.h> 34 35 35 36 /* -
boot/arch/ia64/include/ski.h
rd735e2e r7a99507 30 30 #define BOOT_ia64_SKI_H_ 31 31 32 #include <stddef.h> 32 33 #include <str.h> 33 34 -
boot/arch/ia64/src/putchar.c
rd735e2e r7a99507 27 27 */ 28 28 29 #include <stddef.h>30 29 #include <arch/arch.h> 31 30 #include <putchar.h> 31 #include <stddef.h> 32 32 #include <str.h> 33 33 #include <arch/ski.h> -
boot/arch/mips32/include/types.h
rd735e2e r7a99507 30 30 #define BOOT_mips32_TYPES_H_ 31 31 32 #include <arch/common.h> 33 32 34 #define TASKMAP_MAX_RECORDS 32 33 35 #define CPUMAP_MAX_RECORDS 32 -
boot/arch/mips32/src/putchar.c
rd735e2e r7a99507 28 28 29 29 #include <stddef.h> 30 #include <stdint.h> 30 31 #include <arch/arch.h> 31 32 #include <putchar.h> -
boot/arch/ppc32/include/types.h
rd735e2e r7a99507 30 30 #define BOOT_ppc32_TYPES_H_ 31 31 32 #include <arch/common.h> 33 32 34 #define TASKMAP_MAX_RECORDS 32 33 35 #define BOOTINFO_TASK_NAME_BUFLEN 32 -
boot/arch/riscv64/include/types.h
rd735e2e r7a99507 29 29 #ifndef BOOT_riscv64_TYPES_H_ 30 30 #define BOOT_riscv64_TYPES_H_ 31 32 #include <arch/common.h> 31 33 32 34 #define MEMMAP_MAX_RECORDS 32 -
boot/arch/sparc64/include/asm.h
rd735e2e r7a99507 31 31 #define BOOT_sparc64_ASM_H_ 32 32 33 #include <std def.h>33 #include <stdint.h> 34 34 35 35 extern void jump_to_kernel(uintptr_t physmem_start, bootinfo_t *bootinfo, -
boot/arch/sparc64/include/main.h
rd735e2e r7a99507 30 30 #define BOOT_sparc64_MAIN_H_ 31 31 32 #include <std def.h>32 #include <stdint.h> 33 33 #include <balloc.h> 34 34 #include <genarch/ofw_tree.h> -
boot/arch/sparc64/include/ofw.h
rd735e2e r7a99507 30 30 #define BOOT_sparc64_OFW_H_ 31 31 32 #include <std def.h>32 #include <stdint.h> 33 33 34 34 #define OFW_ADDRESS_CELLS 2 -
boot/arch/sparc64/include/types.h
rd735e2e r7a99507 30 30 #define BOOT_sparc64_TYPES_H_ 31 31 32 #include <arch/common.h> 33 32 34 #define TASKMAP_MAX_RECORDS 32 33 35 #define BOOTINFO_TASK_NAME_BUFLEN 32 -
boot/arch/sparc64/src/ofw.c
rd735e2e r7a99507 37 37 #include <genarch/ofw.h> 38 38 #include <stddef.h> 39 #include <stdint.h> 39 40 #include <printf.h> 40 41 #include <halt.h> -
boot/genarch/src/multiplication.c
rd735e2e r7a99507 33 33 34 34 #include <genarch/multiplication.h> 35 #include <std def.h>35 #include <stdint.h> 36 36 37 37 /** Set 1 to return INT64_MAX or INT64_MIN on overflow */ -
boot/generic/include/putchar.h
rd735e2e r7a99507 36 36 #define BOOT_PUTCHAR_H_ 37 37 38 #include <stddef.h> 39 38 40 extern void putchar(const wchar_t); 39 41 -
boot/generic/include/stddef.h
rd735e2e r7a99507 33 33 #define BOOT_STDDEF_H_ 34 34 35 #include <stdint.h>36 35 #include <arch/common.h> 37 36 #include <arch/types.h> -
boot/generic/include/stdint.h
rd735e2e r7a99507 33 33 #define BOOT_STDINT_H_ 34 34 35 #include <arch/common.h> 36 #include <arch/types.h> 37 35 38 #define INT8_MIN INT8_C(0x80) 36 39 #define INT8_MAX INT8_C(0x7F)
Note:
See TracChangeset
for help on using the changeset viewer.