diff options
| author | Brian Anderson <banderson@mozilla.com> | 2011-12-08 16:47:33 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2011-12-08 16:47:33 -0800 |
| commit | 9e6ff44d9359ce062fb4f0e29c8f4c33eec7781e (patch) | |
| tree | f1f2c3a3e45d836b9f2adf0b05c0aa8a88bd2f45 /src/rt/rust_scheduler.cpp | |
| parent | 0e74121ddb1cf366a474a2d156903edb9e8d9be0 (diff) | |
| download | rust-9e6ff44d9359ce062fb4f0e29c8f4c33eec7781e.tar.gz rust-9e6ff44d9359ce062fb4f0e29c8f4c33eec7781e.zip | |
rt: Make __morestack work on win32
Diffstat (limited to 'src/rt/rust_scheduler.cpp')
| -rw-r--r-- | src/rt/rust_scheduler.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rt/rust_scheduler.cpp b/src/rt/rust_scheduler.cpp index 601a7c3f0ef..03567bbe19a 100644 --- a/src/rt/rust_scheduler.cpp +++ b/src/rt/rust_scheduler.cpp @@ -394,6 +394,7 @@ void rust_scheduler::place_task_in_tls(rust_task *task) { BOOL result = TlsSetValue(task_key, task); assert(result && "Couldn't place the task in TLS!"); + task->record_stack_limit(); } rust_task * |
