void noret
schedule();
-void
-sched_pass();
-
void noret
run(struct thread* thread);
void
cleanup_detached_threads();
+static inline struct scheduler*
+scheduler()
+{
+ extern struct scheduler sched_ctx;
+ return &sched_ctx;
+}
+
#endif /* __LUNAIX_SCHEDULER_H */