Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/cpu.h

    rd19b3fc ra6e55886  
    3838#include <mm/tlb.h>
    3939#include <synch/spinlock.h>
     40#include <synch/rcu_types.h>
    4041#include <proc/scheduler.h>
    4142#include <arch/cpu.h>
     
    9899
    99100        /**
     101         * SMP calls to invoke on this CPU.
     102         */
     103        SPINLOCK_DECLARE(smp_calls_lock);
     104        list_t smp_pending_calls;
     105
     106        /** RCU per-cpu data. Uses own locking. */
     107        rcu_cpu_data_t rcu;
     108
     109        /**
    100110         * Stack used by scheduler when there is no running thread.
    101111         */
Note: See TracChangeset for help on using the changeset viewer.