2011-06-28 14:15:41 -05:00
|
|
|
#ifndef RUST_SCHEDULER_H
|
|
|
|
#define RUST_SCHEDULER_H
|
2010-07-19 16:05:18 -05:00
|
|
|
|
2011-06-28 14:15:41 -05:00
|
|
|
struct rust_scheduler;
|
2011-05-26 20:20:48 -05:00
|
|
|
|
|
|
|
class
|
|
|
|
rust_crate_cache
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
type_desc *get_type_desc(size_t size,
|
|
|
|
size_t align,
|
|
|
|
size_t n_descs,
|
|
|
|
type_desc const **descs);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
type_desc *type_descs;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2011-06-28 14:15:41 -05:00
|
|
|
rust_scheduler *sched;
|
2011-05-26 20:20:48 -05:00
|
|
|
size_t idx;
|
|
|
|
|
2011-06-28 14:15:41 -05:00
|
|
|
rust_crate_cache(rust_scheduler *sched);
|
2011-05-26 20:20:48 -05:00
|
|
|
~rust_crate_cache();
|
|
|
|
void flush();
|
|
|
|
};
|
|
|
|
|
2011-06-29 17:11:20 -05:00
|
|
|
struct rust_scheduler : public kernel_owned<rust_scheduler>,
|
2011-07-23 21:03:02 -05:00
|
|
|
rc_base<rust_scheduler>,
|
|
|
|
rust_thread
|
2010-07-19 16:05:18 -05:00
|
|
|
{
|
|
|
|
// Fields known to the compiler:
|
|
|
|
uintptr_t interrupt_flag;
|
|
|
|
|
|
|
|
// Fields known only by the runtime:
|
|
|
|
rust_log _log;
|
2011-04-19 05:21:57 -05:00
|
|
|
uint32_t log_lvl;
|
2010-07-19 16:05:18 -05:00
|
|
|
rust_srv *srv;
|
2010-08-08 21:24:35 -05:00
|
|
|
const char *const name;
|
2010-09-10 03:21:29 -05:00
|
|
|
|
|
|
|
rust_task_list newborn_tasks;
|
|
|
|
rust_task_list running_tasks;
|
|
|
|
rust_task_list blocked_tasks;
|
|
|
|
rust_task_list dead_tasks;
|
|
|
|
|
2011-05-26 20:20:48 -05:00
|
|
|
rust_crate_cache cache;
|
2010-09-10 03:21:29 -05:00
|
|
|
|
2010-07-19 16:05:18 -05:00
|
|
|
randctx rctx;
|
|
|
|
|
2010-09-07 20:39:07 -05:00
|
|
|
rust_kernel *kernel;
|
2010-08-27 20:26:36 -05:00
|
|
|
int32_t list_index;
|
|
|
|
|
2010-07-28 18:24:50 -05:00
|
|
|
hash_map<rust_task *, rust_proxy<rust_task> *> _task_proxies;
|
2010-07-28 18:46:13 -05:00
|
|
|
hash_map<rust_port *, rust_proxy<rust_port> *> _port_proxies;
|
2010-07-28 18:24:50 -05:00
|
|
|
|
2010-07-19 16:05:18 -05:00
|
|
|
// Incoming messages from other domains.
|
2010-09-07 20:39:07 -05:00
|
|
|
rust_message_queue *message_queue;
|
2010-07-19 16:05:18 -05:00
|
|
|
|
2011-07-23 21:03:02 -05:00
|
|
|
const int id;
|
|
|
|
|
|
|
|
lock_and_signal lock;
|
|
|
|
|
2010-07-19 16:05:18 -05:00
|
|
|
#ifndef __WIN32__
|
|
|
|
pthread_attr_t attr;
|
|
|
|
#endif
|
|
|
|
|
2010-08-08 21:24:35 -05:00
|
|
|
// Only a pointer to 'name' is kept, so it must live as long as this
|
|
|
|
// domain.
|
2011-06-28 14:15:41 -05:00
|
|
|
rust_scheduler(rust_kernel *kernel,
|
2011-07-23 21:03:02 -05:00
|
|
|
rust_message_queue *message_queue, rust_srv *srv,
|
|
|
|
int id);
|
2011-06-28 14:15:41 -05:00
|
|
|
~rust_scheduler();
|
2010-07-19 16:05:18 -05:00
|
|
|
void activate(rust_task *task);
|
2011-04-19 05:21:57 -05:00
|
|
|
void log(rust_task *task, uint32_t level, char const *fmt, ...);
|
2010-07-19 16:05:18 -05:00
|
|
|
rust_log & get_log();
|
|
|
|
void fail();
|
|
|
|
|
2010-08-24 23:06:56 -05:00
|
|
|
void drain_incoming_message_queue(bool process);
|
2010-07-19 16:05:18 -05:00
|
|
|
|
2011-05-26 20:20:48 -05:00
|
|
|
rust_crate_cache *get_cache();
|
2010-09-10 03:21:29 -05:00
|
|
|
size_t number_of_live_tasks();
|
2010-07-19 16:05:18 -05:00
|
|
|
|
2011-06-29 20:47:47 -05:00
|
|
|
void reap_dead_tasks(int id);
|
|
|
|
rust_task *schedule_task(int id);
|
2010-09-07 20:39:07 -05:00
|
|
|
|
2011-07-23 21:03:02 -05:00
|
|
|
void start_main_loop();
|
2010-07-28 16:53:08 -05:00
|
|
|
|
|
|
|
void log_state();
|
2010-09-10 03:21:29 -05:00
|
|
|
|
|
|
|
rust_task *create_task(rust_task *spawner, const char *name);
|
2011-07-23 21:03:02 -05:00
|
|
|
|
|
|
|
virtual void run();
|
2010-07-19 16:05:18 -05:00
|
|
|
};
|
|
|
|
|
2011-04-07 15:05:45 -05:00
|
|
|
inline rust_log &
|
2011-06-28 14:15:41 -05:00
|
|
|
rust_scheduler::get_log() {
|
2011-04-07 15:05:45 -05:00
|
|
|
return _log;
|
|
|
|
}
|
|
|
|
|
2010-07-28 02:36:35 -05:00
|
|
|
//
|
|
|
|
// Local Variables:
|
|
|
|
// mode: C++
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
2011-07-13 15:51:20 -05:00
|
|
|
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
2010-07-28 02:36:35 -05:00
|
|
|
// End:
|
|
|
|
//
|
|
|
|
|
2011-06-28 14:15:41 -05:00
|
|
|
#endif /* RUST_SCHEDULER_H */
|