2012-06-02 23:14:25 -07:00
|
|
|
/**
|
|
|
|
The rust scheduler. Schedulers may be added to the kernel
|
|
|
|
dynamically and they run until there are no more tasks to
|
|
|
|
schedule. Most of the scheduler work is carried out in worker
|
|
|
|
threads by rust_sched_loop.
|
|
|
|
*/
|
|
|
|
|
2012-02-03 15:12:18 -08:00
|
|
|
#ifndef RUST_SCHEDULER_H
|
|
|
|
#define RUST_SCHEDULER_H
|
|
|
|
|
2012-04-02 22:18:01 -05:00
|
|
|
#include "rust_globals.h"
|
|
|
|
#include "util/array_list.h"
|
|
|
|
#include "rust_kernel.h"
|
2012-02-03 15:12:18 -08:00
|
|
|
|
2012-03-29 15:21:32 -07:00
|
|
|
class rust_sched_launcher;
|
2012-04-01 17:22:24 -07:00
|
|
|
class rust_sched_launcher_factory;
|
2012-03-29 15:21:32 -07:00
|
|
|
|
2012-02-03 15:12:18 -08:00
|
|
|
class rust_scheduler : public kernel_owned<rust_scheduler> {
|
2012-06-21 16:44:10 -07:00
|
|
|
// FIXME (#2693): Make these private
|
2012-02-03 15:12:18 -08:00
|
|
|
public:
|
|
|
|
rust_kernel *kernel;
|
|
|
|
private:
|
2012-04-01 16:38:42 -07:00
|
|
|
// Protects live_threads, live_tasks, cur_thread, may_exit
|
2012-02-03 15:12:18 -08:00
|
|
|
lock_and_signal lock;
|
2012-02-04 14:54:10 -08:00
|
|
|
// When this hits zero we'll tell the kernel to release us
|
|
|
|
uintptr_t live_threads;
|
2012-02-06 23:38:22 -08:00
|
|
|
// When this hits zero we'll tell the threads to exit
|
|
|
|
uintptr_t live_tasks;
|
2012-04-01 16:38:42 -07:00
|
|
|
size_t cur_thread;
|
|
|
|
bool may_exit;
|
2012-02-04 14:54:10 -08:00
|
|
|
|
2012-03-29 15:21:32 -07:00
|
|
|
array_list<rust_sched_launcher *> threads;
|
2012-02-03 15:12:18 -08:00
|
|
|
const size_t num_threads;
|
|
|
|
|
2012-02-06 18:00:49 -08:00
|
|
|
rust_sched_id id;
|
|
|
|
|
2012-07-20 18:06:17 -04:00
|
|
|
void create_task_threads(rust_sched_launcher_factory *launchfac,
|
|
|
|
bool killed);
|
2012-02-03 15:12:18 -08:00
|
|
|
void destroy_task_threads();
|
|
|
|
|
2012-04-01 17:22:24 -07:00
|
|
|
rust_sched_launcher *
|
2012-07-20 18:06:17 -04:00
|
|
|
create_task_thread(rust_sched_launcher_factory *launchfac, int id,
|
|
|
|
bool killed);
|
2012-03-29 15:21:32 -07:00
|
|
|
void destroy_task_thread(rust_sched_launcher *thread);
|
2012-02-03 15:12:18 -08:00
|
|
|
|
2012-02-06 23:38:22 -08:00
|
|
|
void exit();
|
|
|
|
|
2012-02-03 15:12:18 -08:00
|
|
|
public:
|
2012-04-01 22:18:40 -05:00
|
|
|
rust_scheduler(rust_kernel *kernel, size_t num_threads,
|
2012-07-20 18:06:17 -04:00
|
|
|
rust_sched_id id, bool allow_exit, bool killed,
|
2012-04-01 18:42:28 -07:00
|
|
|
rust_sched_launcher_factory *launchfac);
|
2012-02-03 15:12:18 -08:00
|
|
|
~rust_scheduler();
|
|
|
|
|
|
|
|
void start_task_threads();
|
2012-02-27 13:36:54 -08:00
|
|
|
void join_task_threads();
|
2012-02-03 15:12:18 -08:00
|
|
|
void kill_all_tasks();
|
2012-03-14 20:22:34 -07:00
|
|
|
rust_task* create_task(rust_task *spawner, const char *name);
|
2012-02-04 14:54:10 -08:00
|
|
|
|
2012-02-06 23:38:22 -08:00
|
|
|
void release_task();
|
|
|
|
|
2012-02-03 15:12:18 -08:00
|
|
|
size_t number_of_threads();
|
2012-02-04 14:54:10 -08:00
|
|
|
// Called by each thread when it terminates. When all threads
|
|
|
|
// terminate the scheduler does as well.
|
|
|
|
void release_task_thread();
|
2012-02-07 17:43:54 -08:00
|
|
|
|
|
|
|
rust_sched_id get_id() { return id; }
|
2012-04-01 16:38:42 -07:00
|
|
|
// Tells the scheduler that as soon as it runs out of tasks
|
|
|
|
// to run it should exit
|
|
|
|
void allow_exit();
|
2012-04-03 17:39:35 -07:00
|
|
|
void disallow_exit();
|
2012-02-03 15:12:18 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* RUST_SCHEDULER_H */
|