We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7309158 + f6b236b commit fc766efCopy full SHA for fc766ef
src/libstd/rt/task.rs
@@ -73,7 +73,10 @@ pub struct Coroutine {
73
/// The segment of stack on which the task is currently running or
74
/// if the task is blocked, on which the task will resume
75
/// execution.
76
- priv current_stack_segment: StackSegment,
+ ///
77
+ /// Servo needs this to be public in order to tell SpiderMonkey
78
+ /// about the stack bounds.
79
+ current_stack_segment: StackSegment,
80
/// Always valid if the task is alive and not running.
81
saved_context: Context
82
}
0 commit comments