use return value from resume_thread as the return value for BusManager::Start

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10094 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
shatty 2004-11-21 08:11:05 +00:00
parent 00c8f309d3
commit d4ac9329fb

View File

@ -176,7 +176,7 @@ status_t BusManager::Start()
// Start the 'explore thread'
m_explore_thread = spawn_kernel_thread( usb_explore_thread , "usb_busmanager_explore" ,
B_LOW_PRIORITY , (void *)m_roothub );
resume_thread( m_explore_thread );
return resume_thread( m_explore_thread );
}
status_t BusManager::SubmitTransfer( Transfer &t )