1
0
Fork 0
forked from len0rd/rockbox

Added thread names

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1357 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2002-07-15 22:19:49 +00:00
parent a23fe48741
commit 76b4096be7
4 changed files with 17 additions and 10 deletions

View file

@ -59,7 +59,8 @@ static int countdown;
static int usb_state;
static char usb_stack[0x800];
static char usb_stack[DEFAULT_STACK_SIZE];
static char usb_thread_name[] = "usb";
static struct event_queue usb_queue;
static bool last_usb_status;
static bool usb_monitor_enabled;
@ -269,7 +270,7 @@ void usb_init(void)
last_usb_status = false;
queue_init(&usb_queue);
create_thread(usb_thread, usb_stack, sizeof(usb_stack));
create_thread(usb_thread, usb_stack, sizeof(usb_stack), usb_thread_name);
tick_add_task(usb_tick);
}