Skip to content

Commit

Permalink
performance: increase compiler task stack
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastien Bourdeauducq committed Oct 3, 2011
1 parent ccdd5f1 commit 86fef88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/performance.c
Expand Up @@ -561,7 +561,7 @@ void start_performance(int simple, int dt, int as)
mtk_cmd(appid, "progress.barconfig(load, -value 0)");
next_update = rtems_clock_get_ticks_since_boot() + UPDATE_PERIOD;
input_add_callback(refresh_callback);
sc = rtems_task_create(rtems_build_name('C', 'O', 'M', 'P'), 20, 64*1024,
sc = rtems_task_create(rtems_build_name('C', 'O', 'M', 'P'), 20, 300*1024,
RTEMS_PREEMPT | RTEMS_NO_TIMESLICE | RTEMS_NO_ASR,
0, &comp_task_id);
assert(sc == RTEMS_SUCCESSFUL);
Expand Down

0 comments on commit 86fef88

Please sign in to comment.