Changeset e29e44bf in mainline
- Timestamp:
- 2017-05-31T22:51:29Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 44a7ee5
- Parents:
- 525c5ac
- Location:
- kernel
- Files:
-
- 1 added
- 24 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/abs32le/include/arch/types.h
r525c5ac re29e44bf 36 36 #define KERN_abs32le_TYPES_H_ 37 37 38 #include <arch/common.h> 39 38 40 #define ATOMIC_COUNT_MIN UINT32_MIN 39 41 #define ATOMIC_COUNT_MAX UINT32_MAX -
kernel/arch/amd64/include/arch/types.h
r525c5ac re29e44bf 36 36 #define KERN_amd64_TYPES_H_ 37 37 38 #include <arch/common.h> 39 38 40 typedef uint64_t size_t; 39 41 typedef int64_t ssize_t; -
kernel/arch/arm32/include/arch/types.h
r525c5ac re29e44bf 37 37 #define KERN_arm32_TYPES_H_ 38 38 39 #include <arch/common.h> 40 39 41 #ifndef DOXYGEN 40 42 #define ATTRIBUTE_PACKED __attribute__((packed)) -
kernel/arch/ia32/include/arch/types.h
r525c5ac re29e44bf 36 36 #define KERN_ia32_TYPES_H_ 37 37 38 #include <arch/common.h> 39 38 40 typedef uint32_t size_t; 39 41 typedef int32_t ssize_t; -
kernel/arch/ia64/include/arch/types.h
r525c5ac re29e44bf 36 36 #define KERN_ia64_TYPES_H_ 37 37 38 #include <arch/common.h> 39 38 40 typedef uint64_t size_t; 39 41 typedef int64_t ssize_t; -
kernel/arch/mips32/include/arch/types.h
r525c5ac re29e44bf 36 36 #define KERN_mips32_TYPES_H_ 37 37 38 #include <arch/common.h> 39 38 40 typedef uint32_t size_t; 39 41 typedef int32_t ssize_t; -
kernel/arch/mips32/src/debug/stacktrace.c
r525c5ac re29e44bf 62 62 63 63 #include <stacktrace.h> 64 #include <stddef.h> 64 65 #include <syscall/copy.h> 65 66 #include <typedefs.h> -
kernel/arch/mips32/src/machine_func.c
r525c5ac re29e44bf 38 38 */ 39 39 40 #include <stddef.h> 40 41 #include <arch/machine_func.h> 41 42 #if defined(MACHINE_msim) -
kernel/arch/ppc32/include/arch/types.h
r525c5ac re29e44bf 36 36 #define KERN_ppc32_TYPES_H_ 37 37 38 #include <arch/common.h> 39 38 40 typedef uint32_t size_t; 39 41 typedef int32_t ssize_t; -
kernel/arch/riscv64/include/arch/types.h
r525c5ac re29e44bf 36 36 #define KERN_riscv64_TYPES_H_ 37 37 38 #include <arch/common.h> 39 38 40 typedef uint64_t size_t; 39 41 typedef int64_t ssize_t; -
kernel/arch/sparc64/include/arch/types.h
r525c5ac re29e44bf 36 36 #define KERN_sparc64_TYPES_H_ 37 37 38 #include <arch/common.h> 39 38 40 typedef uint64_t size_t; 39 41 typedef int64_t ssize_t; -
kernel/genarch/src/multiboot/multiboot.c
r525c5ac re29e44bf 36 36 #include <genarch/multiboot/multiboot.h> 37 37 #include <config.h> 38 #include <stddef.h> 38 39 #include <str.h> 39 40 -
kernel/generic/include/adt/avl.h
r525c5ac re29e44bf 37 37 38 38 #include <stdbool.h> 39 #include <stddef.h> 39 40 #include <typedefs.h> 40 41 #include <trace.h> -
kernel/generic/include/panic.h
r525c5ac re29e44bf 37 37 38 38 #include <stdbool.h> 39 #include <stddef.h> 39 40 #include <typedefs.h> 40 41 #include <print.h> -
kernel/generic/include/typedefs.h
r525c5ac re29e44bf 40 40 #include <arch/types.h> 41 41 42 #define NULL ((void *) 0)43 44 42 typedef struct { 45 43 volatile atomic_count_t count; … … 57 55 typedef volatile uint32_t ioport32_t; 58 56 59 typedef native_t ptrdiff_t;60 61 57 #ifdef __32_BITS__ 62 58 -
kernel/generic/src/printf/printf_core.c
r525c5ac re29e44bf 41 41 #include <stdarg.h> 42 42 #include <macros.h> 43 #include <stddef.h> 43 44 #include <str.h> 44 45 #include <arch.h> -
kernel/test/debug/mips1_skip.c
r525c5ac re29e44bf 28 28 29 29 #include <test.h> 30 #include < typedefs.h>30 #include <stddef.h> 31 31 32 32 const char *test_mips1(void) -
kernel/test/mm/purge1_skip.c
r525c5ac re29e44bf 27 27 */ 28 28 29 #include <stddef.h> 29 30 #include <test.h> 30 #include <typedefs.h>31 31 32 32 const char *test_purge1(void) -
kernel/test/print/print1.c
r525c5ac re29e44bf 28 28 29 29 #include <print.h> 30 #include <stddef.h> 30 31 #include <test.h> 31 32 -
kernel/test/print/print2.c
r525c5ac re29e44bf 28 28 29 29 #include <print.h> 30 #include <stddef.h> 30 31 #include <test.h> 31 32 -
kernel/test/print/print3.c
r525c5ac re29e44bf 27 27 */ 28 28 29 #include <macros.h> 29 30 #include <print.h> 30 #include < macros.h>31 #include <stddef.h> 31 32 #include <test.h> 32 33 -
kernel/test/print/print4.c
r525c5ac re29e44bf 28 28 29 29 #include <print.h> 30 #include <stddef.h> 30 31 #include <test.h> 31 32 -
kernel/test/print/print5.c
r525c5ac re29e44bf 40 40 41 41 #include <print.h> 42 #include <stddef.h> 42 43 #include <test.h> 43 44 -
kernel/test/test.c
r525c5ac re29e44bf 34 34 35 35 #include <test.h> 36 #include <stddef.h> 36 37 #include <str.h> 37 38
Note:
See TracChangeset
for help on using the changeset viewer.