Changeset 95d45482 in mainline for kernel/arch
- Timestamp:
- 2018-11-09T22:29:12Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- be6e37a
- Parents:
- 436a0a5
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-11-08 23:08:28)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-11-09 22:29:12)
- Location:
- kernel/arch
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/_link.ld.in
r436a0a5 r95d45482 33 33 *(COMMON); /* global variables */ 34 34 35 /* XXX:bss can't be omitted from the ELF image. */35 /* bss can't be omitted from the ELF image. */ 36 36 *(.bss); /* uninitialized static variables */ 37 37 -
kernel/arch/arm32/include/arch/context_struct.h
r436a0a5 r95d45482 32 32 #include <typedefs.h> 33 33 34 // XXX: This struct must match assembly code in src/context.S34 // NOTE: This struct must match assembly code in src/context.S 35 35 36 36 /* -
kernel/arch/arm32/include/arch/istate_struct.h
r436a0a5 r95d45482 32 32 #include <stdint.h> 33 33 34 // XXX: Must match assembly code in src/exc_handler.S34 // NOTE: Must match assembly code in src/exc_handler.S 35 35 36 36 typedef struct istate { -
kernel/arch/ia32/_link.ld.in
r436a0a5 r95d45482 32 32 *(COMMON); /* global variables */ 33 33 34 /* XXX:bss can't be omitted from the ELF image. */34 /* bss can't be omitted from the ELF image. */ 35 35 *(.bss); /* uninitialized static variables */ 36 36 -
kernel/arch/ppc32/src/exception.S
r436a0a5 r95d45482 126 126 .endm 127 127 128 // XXX: K_UNMAPPED_TEXT_START section starts at 0x100,128 // NOTE: K_UNMAPPED_TEXT_START section starts at 0x100, 129 129 // so all the following .org directives are relative to that. 130 130 #define ABSOLUTE(x) ((x) - 0x100)
Note:
See TracChangeset
for help on using the changeset viewer.