Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/cpu/cpu.c

    r95d45482 r2e4343b  
    5050#include <sysinfo/sysinfo.h>
    5151#include <arch/cycle.h>
     52#include <synch/rcu.h>
    5253
    5354cpu_t *cpus;
     
    7172                memsetb(cpus, sizeof(cpu_t) * config.cpu_count, 0);
    7273
    73                 // NOTE: All kernel stacks must be aligned to STACK_SIZE,
    74                 //       see get_stack_base().
     74                // XXX: All kernel stacks must be aligned to STACK_SIZE,
     75                //      see get_stack_base().
    7576                size_t i;
    7677                for (i = 0; i < config.cpu_count; i++) {
     
    107108        cpu_identify();
    108109        cpu_arch_init();
     110        rcu_cpu_init();
    109111}
    110112
Note: See TracChangeset for help on using the changeset viewer.