~martin-decky/helenos/rcu

« back to all changes in this revision

Viewing changes to kernel/generic/include/cpu.h

  • Committer: Martin Decky
  • Date: 2012-06-14 15:48:49 UTC
  • Revision ID: martin@decky.cz-20120614154849-7odyfjk6arrh63uz
adopt RCU for HelenOS specifics

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
#include <mm/tlb.h>
39
39
#include <synch/spinlock.h>
 
40
#include <synch/rcu.h>
40
41
#include <proc/scheduler.h>
41
42
#include <arch/cpu.h>
42
43
#include <arch/context.h>
93
94
        struct thread *fpu_owner;
94
95
        
95
96
        /**
 
97
         * RCU data
 
98
         */
 
99
        cpu_rcu_data_t rcu_data;
 
100
        
 
101
        /**
96
102
         * Stack used by scheduler when there is no running thread.
97
103
         */
98
104
        uint8_t *stack;