Skip to content
Snippets Groups Projects
Commit 1267ed57 authored by John Hodge's avatar John Hodge
Browse files

Modules/USB - Fixed thread name

parent a20cfd57
Branches
Tags
No related merge requests found
......@@ -103,6 +103,7 @@ void USB_AsyncCallback(void *Ptr, void *Buf, int Length)
void USB_AsyncThread(void *Unused)
{
Threads_SetName("USB Async IO Thread");
for(;;)
{
tAsyncOp *op = Workqueue_GetWork(&gUSB_AsyncQueue);
......
......@@ -70,6 +70,8 @@ int USB_PollThread(void *unused)
}
}
// Log_Debug("USBPoll", "giUSB_PollPosition = %i", giUSB_PollPosition);
// A little evil for neater code
prev = (void*)( (tVAddr)&gUSB_PollQueues[giUSB_PollPosition] - offsetof(tUSBEndpoint, Next) );
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment