Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 451 → Rev 452

/SPARTAN/trunk/generic/include/proc/scheduler.h
44,11 → 44,6
};
 
extern volatile count_t nrdy;
 
static thread_t *find_best_thread(void);
static void relink_rq(int start);
static void scheduler_separated_stack(void);
 
extern void scheduler_init(void);
 
extern void scheduler_fpu_lazy_request(void);
/SPARTAN/trunk/generic/include/proc/thread.h
112,8 → 112,6
extern spinlock_t threads_lock; /**< Lock protecting threads_head list. */
extern link_t threads_head; /**< List of all threads in the system. */
 
static void cushion(void);
 
extern void thread_init(void);
extern thread_t *thread_create(void (* func)(void *), void *arg, task_t *task, int flags);
extern void thread_ready(thread_t *t);