rt: Remove rust_scheduler::interrupt_flag. Unused

This commit is contained in:
Brian Anderson 2012-02-02 17:31:02 -08:00
parent aee83d2ff1
commit f719ea552b
2 changed files with 0 additions and 6 deletions

View file

@ -18,7 +18,6 @@ rust_scheduler::rust_scheduler(rust_kernel *kernel,
rust_srv *srv,
int id) :
ref_count(1),
interrupt_flag(0),
_log(srv, this),
log_lvl(log_debug),
srv(srv),
@ -274,8 +273,6 @@ rust_scheduler::start_main_loop() {
place_task_in_tls(scheduled_task);
interrupt_flag = 0;
DLOG(this, task,
"Running task %p on worker %d",
scheduled_task, id);

View file

@ -45,9 +45,6 @@ struct rust_scheduler : public kernel_owned<rust_scheduler>,
{
RUST_REFCOUNTED(rust_scheduler)
// Fields known to the compiler:
uintptr_t interrupt_flag;
// Fields known only by the runtime:
rust_log _log;