Changeset d0c82c5 in mainline for kernel/generic/src/cpu/cpu.c
- Timestamp:
- 2010-06-16T19:44:53Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5387807
- Parents:
- 5954241
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/cpu/cpu.c
r5954241 rd0c82c5 49 49 #include <print.h> 50 50 #include <sysinfo/sysinfo.h> 51 #include <arch/cycle.h> 51 52 52 53 cpu_t *cpus; … … 94 95 CPU->tlb_active = true; 95 96 97 CPU->idle = false; 98 CPU->last_cycle = get_cycle(); 99 CPU->idle_cycles = 0; 100 CPU->busy_cycles = 0; 101 96 102 cpu_identify(); 97 103 cpu_arch_init();
Note:
See TracChangeset
for help on using the changeset viewer.