summary refs log tree commit diff
path: root/src/rt
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-02-02 16:15:19 -0800
committerBrian Anderson <banderson@mozilla.com>2012-02-02 18:10:24 -0800
commited3a5ad5ad01a7213cecb6361b83d710f8eb4249 (patch)
tree6722563edf199a4b4bad8bd53a9276339241ec12 /src/rt
parent57cad613538177e06aa1b509f820f6f93704ad8c (diff)
downloadrust-ed3a5ad5ad01a7213cecb6361b83d710f8eb4249.tar.gz
rust-ed3a5ad5ad01a7213cecb6361b83d710f8eb4249.zip
rt: Remove running_on flag. Does nothing
Diffstat (limited to 'src/rt')
-rw-r--r--src/rt/rust_scheduler.cpp2
-rw-r--r--src/rt/rust_task.cpp4
-rw-r--r--src/rt/rust_task.h4
3 files changed, 1 insertions, 9 deletions
diff --git a/src/rt/rust_scheduler.cpp b/src/rt/rust_scheduler.cpp
index 9719ec37715..7b6a0356b6b 100644
--- a/src/rt/rust_scheduler.cpp
+++ b/src/rt/rust_scheduler.cpp
@@ -282,9 +282,7 @@ rust_scheduler::start_main_loop() {
         DLOG(this, task,
              "Running task %p on worker %d",
              scheduled_task, id);
-        scheduled_task->running_on = id;
         activate(scheduled_task);
-        scheduled_task->running_on = -1;
 
         DLOG(this, task,
              "returned from task %s @0x%" PRIxPTR
diff --git a/src/rt/rust_task.cpp b/src/rt/rust_task.cpp
index 6bd03e5f0cc..831d34a6bf0 100644
--- a/src/rt/rust_task.cpp
+++ b/src/rt/rust_task.cpp
@@ -244,7 +244,6 @@ rust_task::rust_task(rust_scheduler *sched, rust_task_list *state,
     list_index(-1),
     next_port_id(0),
     rendezvous_ptr(0),
-    running_on(-1),
     local_region(&sched->srv->local_region),
     boxed(&local_region),
     unwinding(false),
@@ -626,8 +625,7 @@ rust_task::backtrace() {
 
 bool rust_task::can_schedule(int id)
 {
-    return
-        running_on == -1;
+    return true;
 }
 
 void *
diff --git a/src/rt/rust_task.h b/src/rt/rust_task.h
index c9bd9e9d3a9..07ebfb9c50a 100644
--- a/src/rt/rust_task.h
+++ b/src/rt/rust_task.h
@@ -98,10 +98,6 @@ rust_task : public kernel_owned<rust_task>, rust_cond
     // that location before waking us up.
     uintptr_t* rendezvous_ptr;
 
-    // This flag indicates that a worker is either currently running the task
-    // or is about to run this task.
-    int running_on;
-
     memory_region local_region;
     boxed_region boxed;