Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 622 → Rev 623

/kernel/trunk/generic/include/cpu.h
42,7 → 42,7
#define CPU_STACK_SIZE STACK_SIZE
 
struct cpu {
spinlock_t lock;
SPINLOCK_DECLARE(lock);
context_t saved_context;
 
volatile count_t nrdy;
49,7 → 49,7
runq_t rq[RQ_COUNT];
volatile count_t needs_relink;
 
spinlock_t timeoutlock;
SPINLOCK_DECLARE(timeoutlock);
link_t timeout_active_head;
 
#ifdef CONFIG_SMP