243790836a
This class no longer represents a thread; it just schedules tasks.
17 lines
407 B
C++
17 lines
407 B
C++
#include "rust_sched_launcher.h"
|
|
#include "rust_scheduler.h"
|
|
|
|
const size_t SCHED_STACK_SIZE = 1024*100;
|
|
|
|
rust_sched_launcher::rust_sched_launcher(rust_scheduler *sched,
|
|
rust_srv *srv, int id)
|
|
: rust_thread(SCHED_STACK_SIZE),
|
|
kernel(sched->kernel),
|
|
sched_loop(sched, srv, id) {
|
|
}
|
|
|
|
void
|
|
rust_sched_launcher::run() {
|
|
sched_loop.start_main_loop();
|
|
}
|