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:
Daniel Ankers 2007-02-01 20:22:19 +00:00
parent af3b42cce2
commit fa7dd74cf5
2 changed files with 2 additions and 1 deletions

View file

@ -270,3 +270,4 @@ Jakub Matoušek
Albert Veli
Chris Dohan
Takashi Obara
Rene Peinthor

View file

@ -111,7 +111,7 @@ static int current_card = 0;
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 struct event_queue sd_queue;