Changeset aa9551d in mainline
- Timestamp:
- 2005-04-13T14:07:20Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2968fe29
- Parents:
- 34b20f5d
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
include/arch.h
r34b20f5d raa9551d 36 36 #include <arch/cpu.h> 37 37 38 #define CPU ( cpu_private_data[CPU_ID_ARCH].cpu)38 #define CPU (&cpus[CPU_ID_ARCH]) 39 39 #define THREAD (cpu_private_data[CPU_ID_ARCH].thread) 40 40 #define TASK (cpu_private_data[CPU_ID_ARCH].task) -
include/cpu.h
r34b20f5d raa9551d 74 74 */ 75 75 struct cpu_private_data { 76 cpu_t *cpu;77 76 thread_t *thread; 78 77 task_t *task; -
src/cpu/cpu.c
r34b20f5d raa9551d 75 75 list_initialize(&cpus[i].rq[j].rq_head); 76 76 } 77 78 cpu_private_data[i].cpu = &cpus[i];79 77 } 80 78
Note:
See TracChangeset
for help on using the changeset viewer.