Subversion Repositories HelenOS-historic

Rev

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

Rev 111 Rev 227
Line 41... Line 41...
41
    spinlock_t lock;
41
    spinlock_t lock;
42
    link_t rq_head;
42
    link_t rq_head;
43
    int n;
43
    int n;
44
};
44
};
45
 
45
 
46
extern volatile int nrdy;
46
extern volatile count_t nrdy;
47
 
47
 
48
static thread_t *find_best_thread(void);
48
static thread_t *find_best_thread(void);
49
static void relink_rq(int start);
49
static void relink_rq(int start);
50
static void scheduler_separated_stack(void);
50
static void scheduler_separated_stack(void);
51
 
51