auto merge of #8475 : kmcallister/rust/stack_segment, r=brson,brson

Servo needs to tell SpiderMonkey about the stack bounds.

r? @brson
This commit is contained in:
bors 2013-08-13 14:57:24 -07:00
commit 9f379329db
2 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ mod message_queue;
mod sleeper_list;
/// Stack segments and caching.
mod stack;
pub mod stack;
/// CPU context swapping.
mod context;

View File

@ -64,7 +64,7 @@ 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.
priv current_stack_segment: StackSegment,
current_stack_segment: StackSegment,
/// Always valid if the task is alive and not running.
saved_context: Context
}