diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-02-06 02:34:17 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-02-06 02:34:17 +0000 |
| commit | 4d7671ce224a0f96aabb114a4cd5246e3bcc31d0 (patch) | |
| tree | cbd4a4c5198d0cf4da045d4493319209ecf0c7ba /firmware/usb.c | |
| parent | 085032bf0237a4edf5763caf03faf307d45a5374 (diff) | |
| download | rockbox-4d7671ce224a0f96aabb114a4cd5246e3bcc31d0.zip rockbox-4d7671ce224a0f96aabb114a4cd5246e3bcc31d0.tar.gz rockbox-4d7671ce224a0f96aabb114a4cd5246e3bcc31d0.tar.bz2 rockbox-4d7671ce224a0f96aabb114a4cd5246e3bcc31d0.tar.xz | |
Aligned thread stack
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5803 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/usb.c')
| -rw-r--r-- | firmware/usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/usb.c b/firmware/usb.c index f1c8f37..90537f9 100644 --- a/firmware/usb.c +++ b/firmware/usb.c @@ -74,7 +74,7 @@ static int usb_mmc_countdown = 0; /* FIXME: The extra 0x400 is consumed by fat_mount() when the fsinfo needs updating */ -static char usb_stack[DEFAULT_STACK_SIZE + 0x400]; +static long usb_stack[(DEFAULT_STACK_SIZE + 0x400)/4]; static const char usb_thread_name[] = "usb"; static struct event_queue usb_queue; static bool last_usb_status; |