We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 26fd428 + 4fd5318 commit 9f37932Copy full SHA for 9f37932
src/libstd/rt/mod.rs
@@ -112,7 +112,7 @@ mod message_queue;
112
mod sleeper_list;
113
114
/// Stack segments and caching.
115
-mod stack;
+pub mod stack;
116
117
/// CPU context swapping.
118
mod context;
src/libstd/rt/task.rs
@@ -64,7 +64,7 @@ pub struct Coroutine {
64
/// The segment of stack on which the task is currently running or
65
/// if the task is blocked, on which the task will resume
66
/// execution.
67
- priv current_stack_segment: StackSegment,
+ current_stack_segment: StackSegment,
68
/// Always valid if the task is alive and not running.
69
saved_context: Context
70
}
0 commit comments