about summary refs log tree commit diff
path: root/src/libgreen/context.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libgreen/context.rs')
-rw-r--r--src/libgreen/context.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libgreen/context.rs b/src/libgreen/context.rs
index f072df73368..a521c9bee87 100644
--- a/src/libgreen/context.rs
+++ b/src/libgreen/context.rs
@@ -22,9 +22,9 @@ use std::raw;
 // then misalign the regs again.
 pub struct Context {
     /// Hold the registers while the task or scheduler is suspended
-    priv regs: ~Registers,
+    regs: ~Registers,
     /// Lower bound and upper bound for the stack
-    priv stack_bounds: Option<(uint, uint)>,
+    stack_bounds: Option<(uint, uint)>,
 }
 
 pub type InitFn = extern "C" fn(uint, *(), *()) -> !;