Changeset 43114c5 in mainline for arch/mips/src/cpu/cpu.c


Ignore:
Timestamp:
2005-04-09T18:22:53Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8262010
Parents:
e6ba9a3f
Message:

Introduce macros CPU, THREAD, TASK and use them to replace the→cpu, the→thread, the→task.
Later on, this will make it possible to reference *current* cpu, thread and/or task without the aid from virtual memory.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips/src/cpu/cpu.c

    re6ba9a3f r43114c5  
    8484void cpu_identify(void)
    8585{
    86         the->cpu->arch.rev_num = cp0_prid_read() & 0xff;
    87         the->cpu->arch.imp_num = (cp0_prid_read() >> 8) & 0xff;
     86        CPU->arch.rev_num = cp0_prid_read() & 0xff;
     87        CPU->arch.imp_num = (cp0_prid_read() >> 8) & 0xff;
    8888}
    8989
Note: See TracChangeset for help on using the changeset viewer.