mirror of
https://github.com/AxioDL/jbus.git
synced 2025-12-14 07:36:07 +00:00
Use blocking I/O for transfer thread
This commit is contained in:
@@ -53,8 +53,9 @@ void Listener::listenerProc()
|
||||
}
|
||||
}
|
||||
|
||||
net::Socket acceptData = {false};
|
||||
net::Socket acceptClock = {false};
|
||||
/* We use blocking I/O since we have a dedicated transfer thread */
|
||||
net::Socket acceptData = {true};
|
||||
net::Socket acceptClock = {true};
|
||||
std::string hostname;
|
||||
u8 chan = 1;
|
||||
while (m_running && chan < 4)
|
||||
|
||||
Reference in New Issue
Block a user