Subversion Repositories HelenOS-historic

Rev

Rev 458 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 458 Rev 483
Line 43... Line 43...
43
 
43
 
44
struct cpu {
44
struct cpu {
45
    spinlock_t lock;
45
    spinlock_t lock;
46
    context_t saved_context;
46
    context_t saved_context;
47
 
47
 
48
    volatile int nrdy;
48
    volatile count_t nrdy;
49
    runq_t rq[RQ_COUNT];
49
    runq_t rq[RQ_COUNT];
50
    volatile int needs_relink;
50
    volatile count_t needs_relink;
51
 
51
 
52
    spinlock_t timeoutlock;
52
    spinlock_t timeoutlock;
53
    link_t timeout_active_head;
53
    link_t timeout_active_head;
54
 
54
 
55
    #ifdef CONFIG_SMP
55
    #ifdef CONFIG_SMP