Changeset 95d45482 in mainline for kernel/arch


Ignore:
Timestamp:
2018-11-09T22:29:12Z (7 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
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)
Message:

XXX to NOTE

Location:
kernel/arch
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/amd64/_link.ld.in

    r436a0a5 r95d45482  
    3333                *(COMMON);      /* global variables */
    3434
    35                 /* XXX: bss can't be omitted from the ELF image. */
     35                /* bss can't be omitted from the ELF image. */
    3636                *(.bss);        /* uninitialized static variables */
    3737
  • kernel/arch/arm32/include/arch/context_struct.h

    r436a0a5 r95d45482  
    3232#include <typedefs.h>
    3333
    34 // XXX: This struct must match assembly code in src/context.S
     34// NOTE: This struct must match assembly code in src/context.S
    3535
    3636/*
  • kernel/arch/arm32/include/arch/istate_struct.h

    r436a0a5 r95d45482  
    3232#include <stdint.h>
    3333
    34 // XXX: Must match assembly code in src/exc_handler.S
     34// NOTE: Must match assembly code in src/exc_handler.S
    3535
    3636typedef struct istate {
  • kernel/arch/ia32/_link.ld.in

    r436a0a5 r95d45482  
    3232                *(COMMON);              /* global variables */
    3333
    34                 /* XXX: bss can't be omitted from the ELF image. */
     34                /* bss can't be omitted from the ELF image. */
    3535                *(.bss);                /* uninitialized static variables */
    3636
  • kernel/arch/ppc32/src/exception.S

    r436a0a5 r95d45482  
    126126.endm
    127127
    128 // XXX: K_UNMAPPED_TEXT_START section starts at 0x100,
     128// NOTE: K_UNMAPPED_TEXT_START section starts at 0x100,
    129129// so all the following .org directives are relative to that.
    130130#define ABSOLUTE(x) ((x) - 0x100)
Note: See TracChangeset for help on using the changeset viewer.