Changeset d9fdd5a in mainline
- Timestamp:
- 2018-04-17T14:10:20Z (7 years ago)
- Parents:
- 30e9f42
- Files:
-
- 31 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/include/arch/boot/memmap_struct.h
r30e9f42 rd9fdd5a 26 26 */ 27 27 28 #pragma once 28 #ifndef KERN_ARCH_BOOT_MEMMAP_STRUCT_H_ 29 #define KERN_ARCH_BOOT_MEMMAP_STRUCT_H_ 29 30 30 31 #define E820MEMMAP_OFFSET_BASE_ADDRESS 0x00 … … 44 45 45 46 #endif 47 #endif 46 48 -
kernel/arch/amd64/include/arch/context_struct.h
r30e9f42 rd9fdd5a 26 26 */ 27 27 28 #pragma once 28 #ifndef KERN_ARCH_CONTEXT_STRUCT_H_ 29 #define KERN_ARCH_CONTEXT_STRUCT_H_ 29 30 30 31 #define CONTEXT_OFFSET_SP 0x00 … … 61 62 62 63 #endif 64 #endif 63 65 -
kernel/arch/amd64/include/arch/istate_struct.h
r30e9f42 rd9fdd5a 26 26 */ 27 27 28 #pragma once 28 #ifndef KERN_ARCH_ISTATE_STRUCT_H_ 29 #define KERN_ARCH_ISTATE_STRUCT_H_ 29 30 30 31 #define ISTATE_OFFSET_RAX 0x00 … … 92 93 93 94 #endif 95 #endif 94 96 -
kernel/arch/amd64/include/arch/kseg_struct.h
r30e9f42 rd9fdd5a 26 26 */ 27 27 28 #pragma once 28 #ifndef KERN_ARCH_KSEG_STRUCT_H_ 29 #define KERN_ARCH_KSEG_STRUCT_H_ 29 30 30 31 #define KSEG_OFFSET_USTACK_RSP 0x00 … … 44 45 45 46 #endif 47 #endif 46 48 -
kernel/arch/arm32/include/arch/context_struct.h
r30e9f42 rd9fdd5a 27 27 */ 28 28 29 #pragma once 29 #ifndef KERN_ARCH_CONTEXT_STRUCT_H_ 30 #define KERN_ARCH_CONTEXT_STRUCT_H_ 31 30 32 #include <typedefs.h> 31 33 … … 51 53 } context_t; 52 54 55 #endif 56 -
kernel/arch/arm32/include/arch/istate_struct.h
r30e9f42 rd9fdd5a 27 27 */ 28 28 29 #pragma once 29 #ifndef KERN_ARCH_ISTATE_STRUCT_H_ 30 #define KERN_ARCH_ISTATE_STRUCT_H_ 31 30 32 #include <stdint.h> 31 33 … … 53 55 } istate_t; 54 56 57 #endif 58 -
kernel/arch/ia32/include/arch/boot/memmap_struct.h
r30e9f42 rd9fdd5a 26 26 */ 27 27 28 #pragma once 28 #ifndef KERN_ARCH_BOOT_MEMMAP_STRUCT_H_ 29 #define KERN_ARCH_BOOT_MEMMAP_STRUCT_H_ 29 30 30 31 #define E820MEMMAP_OFFSET_BASE_ADDRESS 0x00 … … 46 47 47 48 #endif 49 #endif -
kernel/arch/ia32/include/arch/context_struct.h
r30e9f42 rd9fdd5a 26 26 */ 27 27 28 #pragma once 28 #ifndef KERN_ARCH_CONTEXT_STRUCT_H_ 29 #define KERN_ARCH_CONTEXT_STRUCT_H_ 29 30 30 31 #define CONTEXT_OFFSET_SP 0x00 … … 55 56 56 57 #endif 58 #endif 57 59 -
kernel/arch/ia32/include/arch/istate_struct.h
r30e9f42 rd9fdd5a 26 26 */ 27 27 28 #pragma once 28 #ifndef KERN_ARCH_ISTATE_STRUCT_H_ 29 #define KERN_ARCH_ISTATE_STRUCT_H_ 29 30 30 31 #define ISTATE_OFFSET_EDX 0 … … 105 106 106 107 #endif 108 #endif 107 109 -
kernel/arch/ia64/include/arch/context_struct.h
r30e9f42 rd9fdd5a 26 26 */ 27 27 28 #pragma once 28 #ifndef KERN_ARCH_CONTEXT_STRUCT_H_ 29 #define KERN_ARCH_CONTEXT_STRUCT_H_ 29 30 30 31 #define CONTEXT_OFFSET_AR_PFS 0x00 … … 134 135 135 136 #endif /* __ASSEMBLER__ */ 137 #endif 136 138 -
kernel/arch/ia64/include/arch/istate_struct.h
r30e9f42 rd9fdd5a 26 26 */ 27 27 28 #pragma once 28 #ifndef KERN_ARCH_ISTATE_STRUCT_H_ 29 #define KERN_ARCH_ISTATE_STRUCT_H_ 29 30 30 31 #define ISTATE_OFFSET_F2 0x000 … … 151 152 152 153 #endif 154 #endif 153 155 -
kernel/arch/mips32/include/arch/context_struct.h
r30e9f42 rd9fdd5a 27 27 */ 28 28 29 #pragma once 29 #ifndef KERN_ARCH_CONTEXT_STRUCT_H_ 30 #define KERN_ARCH_CONTEXT_STRUCT_H_ 30 31 31 32 #define CONTEXT_OFFSET_SP 0x00 … … 66 67 67 68 #endif 69 #endif 68 70 -
kernel/arch/mips32/include/arch/fpu_context_struct.h
r30e9f42 rd9fdd5a 27 27 */ 28 28 29 #pragma once 29 #ifndef KERN_ARCH_FPU_CONTEXT_STRUCT_H_ 30 #define KERN_ARCH_FPU_CONTEXT_STRUCT_H_ 30 31 31 32 #define FPU_CONTEXT_OFFSET_DREGS 0 … … 46 47 47 48 #endif 49 #endif 48 50 -
kernel/arch/mips32/include/arch/istate_struct.h
r30e9f42 rd9fdd5a 27 27 */ 28 28 29 #pragma once 29 #ifndef KERN_ARCH_ISTATE_STRUCT_H_ 30 #define KERN_ARCH_ISTATE_STRUCT_H_ 30 31 31 32 #define ISTATE_OFFSET_A0 0x00 … … 126 127 127 128 #endif 129 #endif 128 130 -
kernel/arch/ppc32/include/arch/context_struct.h
r30e9f42 rd9fdd5a 27 27 */ 28 28 29 #pragma once 29 #ifndef KERN_ARCH_CONTEXT_STRUCT_H_ 30 #define KERN_ARCH_CONTEXT_STRUCT_H_ 30 31 31 32 #define CONTEXT_OFFSET_SP 0x00 … … 87 88 88 89 #endif 90 #endif 89 91 -
kernel/arch/ppc32/include/arch/fpu_context_struct.h
r30e9f42 rd9fdd5a 27 27 */ 28 28 29 #pragma once 29 #ifndef KERN_ARCH_FPU_CONTEXT_STRUCT_H_ 30 #define KERN_ARCH_FPU_CONTEXT_STRUCT_H_ 30 31 31 32 #define FPU_CONTEXT_OFFSET_FR0 0x00 … … 105 106 106 107 #endif 108 #endif 107 109 -
kernel/arch/ppc32/include/arch/istate_struct.h
r30e9f42 rd9fdd5a 27 27 */ 28 28 29 #pragma once 29 #ifndef KERN_ARCH_ISTATE_STRUCT_H_ 30 #define KERN_ARCH_ISTATE_STRUCT_H_ 30 31 31 32 #define ISTATE_OFFSET_SP_FRAME 0x00 … … 129 130 130 131 #endif 132 #endif 131 133 -
kernel/arch/riscv64/include/arch/context_struct.h
r30e9f42 rd9fdd5a 27 27 */ 28 28 29 #pragma once 29 #ifndef KERN_ARCH_CONTEXT_STRUCT_H_ 30 #define KERN_ARCH_CONTEXT_STRUCT_H_ 30 31 31 32 #define CONTEXT_OFFSET_SP 0x00 … … 73 74 74 75 #endif 76 #endif 75 77 -
kernel/arch/riscv64/include/arch/istate_struct.h
r30e9f42 rd9fdd5a 27 27 */ 28 28 29 #pragma once 29 #ifndef KERN_ARCH_ISTATE_STRUCT_H_ 30 #define KERN_ARCH_ISTATE_STRUCT_H_ 30 31 31 32 #define ISTATE_OFFSET_ZERO 0x00 … … 111 112 112 113 #endif 114 #endif 113 115 -
kernel/arch/sparc64/include/arch/context_struct.h
r30e9f42 rd9fdd5a 27 27 */ 28 28 29 #pragma once 29 #ifndef KERN_ARCH_CONTEXT_STRUCT_H_ 30 #define KERN_ARCH_CONTEXT_STRUCT_H_ 30 31 31 32 #define CONTEXT_OFFSET_SP 0x00 … … 77 78 78 79 #endif 80 #endif 79 81 -
kernel/arch/sparc64/include/arch/istate_struct.h
r30e9f42 rd9fdd5a 27 27 */ 28 28 29 #pragma once 29 #ifndef KERN_ARCH_ISTATE_STRUCT_H_ 30 #define KERN_ARCH_ISTATE_STRUCT_H_ 30 31 31 32 #define ISTATE_OFFSET_L0 0x00 … … 135 136 136 137 #endif 138 #endif 137 139 -
kernel/genarch/include/genarch/multiboot/multiboot_info_struct.h
r30e9f42 rd9fdd5a 26 26 */ 27 27 28 #pragma once 28 #ifndef KERN_MULTIBOOT_INFO_STRUCT_H_ 29 #define KERN_MULTIBOOT_INFO_STRUCT_H_ 29 30 30 31 #define MULTIBOOT_INFO_OFFSET_FLAGS 0x00 … … 58 59 59 60 #endif 61 #endif -
kernel/genarch/include/genarch/multiboot/multiboot_memmap_struct.h
r30e9f42 rd9fdd5a 26 26 */ 27 27 28 #pragma once 28 #ifndef KERN_MULTIBOOT_MEMMAP_STRUCT_H_ 29 #define KERN_MULTIBOOT_MEMMAP_STRUCT_H_ 29 30 30 31 #include <arch/boot/memmap_struct.h> … … 46 47 47 48 #endif 49 #endif -
uspace/lib/c/arch/amd64/include/libarch/fibril_context.h
r30e9f42 rd9fdd5a 26 26 */ 27 27 28 #pragma once 28 #ifndef LIBC_ARCH_FIBRIL_CONTEXT_H_ 29 #define LIBC_ARCH_FIBRIL_CONTEXT_H_ 29 30 30 31 #define CONTEXT_OFFSET_SP 0x00 … … 59 60 60 61 #endif 62 #endif 61 63 -
uspace/lib/c/arch/arm32/include/libarch/fibril_context.h
r30e9f42 rd9fdd5a 26 26 */ 27 27 28 #pragma once 28 #ifndef LIBC_ARCH_FIBRIL_CONTEXT_H_ 29 #define LIBC_ARCH_FIBRIL_CONTEXT_H_ 29 30 30 31 #include <stdint.h> … … 54 55 } context_t; 55 56 57 #endif 58 -
uspace/lib/c/arch/ia32/include/libarch/fibril_context.h
r30e9f42 rd9fdd5a 26 26 */ 27 27 28 #pragma once 28 #ifndef LIBC_ARCH_FIBRIL_CONTEXT_H_ 29 #define LIBC_ARCH_FIBRIL_CONTEXT_H_ 29 30 30 31 #define CONTEXT_OFFSET_SP 0x00 … … 53 54 54 55 #endif 56 #endif 55 57 -
uspace/lib/c/arch/ia64/include/libarch/fibril_context.h
r30e9f42 rd9fdd5a 26 26 */ 27 27 28 #pragma once 28 #ifndef LIBC_ARCH_FIBRIL_CONTEXT_H_ 29 #define LIBC_ARCH_FIBRIL_CONTEXT_H_ 29 30 30 31 #define CONTEXT_OFFSET_AR_PFS 0x000 … … 132 133 133 134 #endif /* __ASSEMBLER__ */ 135 #endif 134 136 -
uspace/lib/c/arch/mips32/include/libarch/fibril_context.h
r30e9f42 rd9fdd5a 26 26 */ 27 27 28 #pragma once 28 #ifndef LIBC_ARCH_FIBRIL_CONTEXT_H_ 29 #define LIBC_ARCH_FIBRIL_CONTEXT_H_ 29 30 30 31 #define CONTEXT_OFFSET_SP 0x00 … … 88 89 89 90 #endif 91 #endif 90 92 -
uspace/lib/c/arch/ppc32/include/libarch/fibril_context.h
r30e9f42 rd9fdd5a 26 26 */ 27 27 28 #pragma once 28 #ifndef LIBC_ARCH_FIBRIL_CONTEXT_H_ 29 #define LIBC_ARCH_FIBRIL_CONTEXT_H_ 29 30 30 31 #define CONTEXT_OFFSET_SP 0x00 … … 85 86 86 87 #endif 88 #endif 87 89 -
uspace/lib/c/arch/riscv64/include/libarch/fibril_context.h
r30e9f42 rd9fdd5a 26 26 */ 27 27 28 #pragma once 28 #ifndef LIBC_ARCH_FIBRIL_CONTEXT_H_ 29 #define LIBC_ARCH_FIBRIL_CONTEXT_H_ 29 30 30 31 #define CONTEXT_OFFSET_SP 0x00 … … 110 111 111 112 #endif 113 #endif 112 114 -
uspace/lib/c/arch/sparc64/include/libarch/fibril_context.h
r30e9f42 rd9fdd5a 26 26 */ 27 27 28 #pragma once 28 #ifndef LIBC_ARCH_FIBRIL_CONTEXT_H_ 29 #define LIBC_ARCH_FIBRIL_CONTEXT_H_ 29 30 30 31 #define CONTEXT_OFFSET_SP 0x00 … … 77 78 78 79 #endif 80 #endif 79 81
Note:
See TracChangeset
for help on using the changeset viewer.