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.
This commit is contained in:
Christian Mauderer 2016-08-08 15:53:39 +02:00
parent a8d016c39d
commit 61e2e1bf91

View File

@ -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);