Increase disk thread stack on the Sansa in line with the changes in r12093. Fixes the recent Sansa crashes. Thanks to Rene Peinthor
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12177 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
af3b42cce2
commit
fa7dd74cf5
2 changed files with 2 additions and 1 deletions
|
@ -270,3 +270,4 @@ Jakub Matoušek
|
||||||
Albert Veli
|
Albert Veli
|
||||||
Chris Dohan
|
Chris Dohan
|
||||||
Takashi Obara
|
Takashi Obara
|
||||||
|
Rene Peinthor
|
||||||
|
|
|
@ -111,7 +111,7 @@ static int current_card = 0;
|
||||||
|
|
||||||
static struct mutex sd_mtx;
|
static struct mutex sd_mtx;
|
||||||
|
|
||||||
static long sd_stack [DEFAULT_STACK_SIZE/sizeof(long)];
|
static long sd_stack [(DEFAULT_STACK_SIZE*2)/sizeof(long)];
|
||||||
|
|
||||||
static const char sd_thread_name[] = "sd";
|
static const char sd_thread_name[] = "sd";
|
||||||
static struct event_queue sd_queue;
|
static struct event_queue sd_queue;
|
||||||
|
|
Loading…
Reference in a new issue