Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 15 → Rev 16

/SPARTAN/trunk/include/cpu.h
68,12 → 68,17
__u8 *stack;
};
 
struct cpu_private_page {
/*
* read/write by associated CPU
* read only by other CPUs
*/
struct cpu_private_data {
cpu_t *cpu;
thread_t *thread;
task_t *task;
};
 
extern cpu_private_data_t *cpu_private_data;
extern cpu_t *cpus;
 
extern void cpu_init(void);