summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-07-01 21:16:07 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-07-01 21:16:07 +0000
commitc36919eca3a19086dc1f4ebfa2eedc6e705fcb61 (patch)
tree1db8f429683c9fbea745a4d43eb177ad87a92ee9
parent9f690b8cf81a8eaafa43c30bf7e076b3be85f4c1 (diff)
downloadrockbox-c36919eca3a19086dc1f4ebfa2eedc6e705fcb61.tar.gz
rockbox-c36919eca3a19086dc1f4ebfa2eedc6e705fcb61.zip
Increased thread stack size
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1291 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/backlight.c2
-rw-r--r--firmware/usb.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/firmware/backlight.c b/firmware/backlight.c
index 61035b33f7..69907cf8d0 100644
--- a/firmware/backlight.c
+++ b/firmware/backlight.c
@@ -30,7 +30,7 @@
30#define BACKLIGHT_OFF 2 30#define BACKLIGHT_OFF 2
31 31
32static void backlight_thread(void); 32static void backlight_thread(void);
33static char backlight_stack[0x100]; 33static char backlight_stack[0x400];
34static struct event_queue backlight_queue; 34static struct event_queue backlight_queue;
35 35
36static int backlight_timer; 36static int backlight_timer;
diff --git a/firmware/usb.c b/firmware/usb.c
index 7516cebd6b..01b14ffa78 100644
--- a/firmware/usb.c
+++ b/firmware/usb.c
@@ -54,7 +54,7 @@ static int countdown;
54 54
55static int usb_state; 55static int usb_state;
56 56
57static char usb_stack[0x200]; 57static char usb_stack[0x800];
58static struct event_queue usb_queue; 58static struct event_queue usb_queue;
59static bool last_usb_status; 59static bool last_usb_status;
60static bool usb_monitor_enabled; 60static bool usb_monitor_enabled;