[PATCH 3/5] rc.conf: Use more stack for the rc worker.
Christian Mauderer
christian.mauderer at embedded-brains.de
Mon Aug 8 14:32:58 UTC 2016
From: Christian Mauderer <Christian.Mauderer at embedded-brains.de>
Most of the tests run with a default stack size of 32k. If the rc worker
runs with less, it uses an untested configuration.
---
rtemsbsd/rtems/rtems-bsd-rc-conf.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rtemsbsd/rtems/rtems-bsd-rc-conf.c b/rtemsbsd/rtems/rtems-bsd-rc-conf.c
index ce5f6aa..e355036 100644
--- a/rtemsbsd/rtems/rtems-bsd-rc-conf.c
+++ b/rtemsbsd/rtems/rtems-bsd-rc-conf.c
@@ -789,7 +789,7 @@ rtems_bsd_run_rc_conf_script(const char* name,
sc = rtems_task_create(rtems_build_name('B', 'S', 'D', 'r' ),
priority,
- 8 * 1024,
+ 32 * 1024,
RTEMS_PREEMPT | RTEMS_NO_TIMESLICE | RTEMS_NO_ASR,
RTEMS_LOCAL | RTEMS_FLOATING_POINT,
&worker);
--
2.9.2
More information about the devel
mailing list