Changeset 3902f8a4 in mainline


Ignore:
Timestamp:
2005-08-15T11:34:58Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
efa9b73
Parents:
2e5365f3
Message:

For all relevant architectures, rename fake.s to dummy.s to better reflect the purpose of the file.
Also define global symbol called dummy.

Location:
arch
Files:
3 edited
3 moved

Legend:

Unmodified
Added
Removed
  • arch/ia64/Makefile.inc

    r2e5365f3 r3902f8a4  
    1818        arch/start.S \
    1919        arch/asm.S \
    20         arch/fake.s \
     20        arch/dummy.s \
    2121        arch/putchar.c \
    2222        arch/ia64.c \
  • arch/ia64/src/dummy.s

    r2e5365f3 r3902f8a4  
    4343.global cpu_sleep
    4444.global frame_arch_init
     45.global dummy
    4546
    4647before_thread_runs_arch:
     
    5859cpu_sleep:
    5960frame_arch_init:
     61
     62dummy:
    6063        br.ret.sptk.many b0
    6164
  • arch/mips/Makefile.inc

    r2e5365f3 r3902f8a4  
    2020        arch/panic.s \
    2121        arch/mips.c \
    22         arch/fake.s \
     22        arch/dummy.s \
    2323        arch/putchar.c \
    2424        arch/asm.s \
  • arch/mips/src/dummy.s

    r2e5365f3 r3902f8a4  
    3434.global userspace
    3535.global before_thread_runs_arch
     36.global dummy
    3637
    3738before_thread_runs_arch:
     
    3940calibrate_delay_loop:
    4041asm_delay_loop:
     42
     43dummy:
    4144        j $31
    4245        nop
  • arch/ppc/Makefile.inc

    r2e5365f3 r3902f8a4  
    1414        arch/powerpc.c \
    1515        arch/fpu_context.c \
    16         arch/fake.s \
     16        arch/dummy.s \
    1717        arch/start.S
  • arch/ppc/src/dummy.s

    r2e5365f3 r3902f8a4  
    4848.global arch_late_init
    4949.global calibrate_delay_loop
     50.global dummy
    5051
    5152cpu_priority_high:
     
    7172calibrate_delay_loop:
    7273
     74dummy:
    73750:
    7476        bl 0b
Note: See TracChangeset for help on using the changeset viewer.