about summary refs log tree commit diff
path: root/src/rt/rust_task.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/rt/rust_task.cpp')
-rw-r--r--src/rt/rust_task.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rt/rust_task.cpp b/src/rt/rust_task.cpp
index 4b300c1a524..754ff1edaf1 100644
--- a/src/rt/rust_task.cpp
+++ b/src/rt/rust_task.cpp
@@ -14,9 +14,9 @@
 
 // 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 = 0x300000;
-// static size_t const min_stk_bytes = 0x10000;
-
+//static size_t const min_stk_bytes = 0x300000;
+//static size_t const min_stk_bytes = 0x10000;
+static size_t const min_stk_bytes = 0x100000;
 
 // Task stack segments. Heap allocated and chained together.