summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Mauderer <Christian.Mauderer@embedded-brains.de>2016-08-08 15:53:39 +0200
committerChristian Mauderer <Christian.Mauderer@embedded-brains.de>2016-08-08 16:10:05 +0200
commit61e2e1bf91eaffcfeb4142d463386fb81ba27361 (patch)
treedf464b9598a869b7e6afa8e3bd47ce3e52e55ecd
parenttestsuite/pf01: Remove pflog-module from test. (diff)
downloadrtems-libbsd-61e2e1bf91eaffcfeb4142d463386fb81ba27361.tar.bz2
rc.conf: Use more stack for the rc worker.
Most of the tests run with a default stack size of 32k. If the rc worker runs with less, it uses an untested configuration.
-rw-r--r--rtemsbsd/rtems/rtems-bsd-rc-conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rtemsbsd/rtems/rtems-bsd-rc-conf.c b/rtemsbsd/rtems/rtems-bsd-rc-conf.c
index ce5f6aaf..e3550369 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);