about summary refs log tree commit diff
path: root/src/libstd/rt/task.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/rt/task.rs')
-rw-r--r--src/libstd/rt/task.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/libstd/rt/task.rs b/src/libstd/rt/task.rs
index 6e0b96c221e..ca96ee032e2 100644
--- a/src/libstd/rt/task.rs
+++ b/src/libstd/rt/task.rs
@@ -43,7 +43,6 @@ use send_str::SendStr;
 // the type-specific state.
 
 pub struct Task {
-     //all priv made br reedlepe
      heap: LocalHeap,
      priv gc: GarbageCollector,
      storage: LocalStorage,
@@ -57,7 +56,6 @@ pub struct Task {
      sched: Option<~Scheduler>,
      task_type: TaskType,
     // Dynamic borrowck debugging info
-     // should be public
      borrow_list: Option<~[BorrowRecord]>
 }
 
@@ -71,7 +69,6 @@ pub struct Coroutine {
     /// The segment of stack on which the task is currently running or
     /// if the task is blocked, on which the task will resume
     /// execution.
-    //all priv made br reedlepe
     priv current_stack_segment: StackSegment,
     /// Always valid if the task is alive and not running.
     saved_context: Context
@@ -87,7 +84,6 @@ pub struct GarbageCollector;
 pub struct LocalStorage(Option<local_data::Map>);
 
 pub struct Unwinder {
-    //all priv made br reedlepe
     unwinding: bool,
 }