diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2011-07-06 15:13:00 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2011-07-06 15:13:00 -0700 |
| commit | 0391e14fc2f9604c6d9176d7e3ab7892e10f38b0 (patch) | |
| tree | 7c3253c6cee050e5c39005bba05e6f46eb7d04f7 /src/rt/rust_task.cpp | |
| parent | 91eb63eaee238061d278ecb8609775ac8f7aced8 (diff) | |
| download | rust-0391e14fc2f9604c6d9176d7e3ab7892e10f38b0.tar.gz rust-0391e14fc2f9604c6d9176d7e3ab7892e10f38b0.zip | |
rt: Double stack size
Diffstat (limited to 'src/rt/rust_task.cpp')
| -rw-r--r-- | src/rt/rust_task.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_task.cpp b/src/rt/rust_task.cpp index 87492600524..c960c9a7250 100644 --- a/src/rt/rust_task.cpp +++ b/src/rt/rust_task.cpp @@ -15,7 +15,7 @@ // FIXME (issue #151): This should be 0x300; the change here is for // practicality's sake until stack growth is working. -static size_t const min_stk_bytes = 0x100000; +static size_t const min_stk_bytes = 0x200000; // Task stack segments. Heap allocated and chained together. |
