mirror of https://github.com/BOINC/boinc.git
Fix inconsistent line endings
svn path=/workspaces/charlief/; revision=15723
This commit is contained in:
parent
57cb31f3b9
commit
8e0d6a6778
|
@ -152,7 +152,7 @@ void *RPCThread::Entry() {
|
||||||
wxPostEvent( wxTheApp, RPC_done_event );
|
wxPostEvent( wxTheApp, RPC_done_event );
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef __WXMSW__
|
#ifndef __WXMSW__
|
||||||
// Use a critical section to prevent a crash during
|
// Use a critical section to prevent a crash during
|
||||||
// manager shutdown due to a rare race condition
|
// manager shutdown due to a rare race condition
|
||||||
m_Doc->m_critsect.Enter();
|
m_Doc->m_critsect.Enter();
|
||||||
|
@ -438,7 +438,7 @@ int CMainDocument::RequestRPC(ASYNC_RPC_REQUEST& request, bool hasPriority) {
|
||||||
request.isActive = false;
|
request.isActive = false;
|
||||||
current_rpc_request = request;
|
current_rpc_request = request;
|
||||||
current_rpc_request.isActive = true;
|
current_rpc_request.isActive = true;
|
||||||
#ifndef __WXMSW__
|
#ifndef __WXMSW__
|
||||||
m_RPCThread->Resume();
|
m_RPCThread->Resume();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@ -711,7 +711,7 @@ void CMainDocument::OnRPCComplete(CRPCFinishedEvent& event) {
|
||||||
RPC_requests[0].isActive = false;
|
RPC_requests[0].isActive = false;
|
||||||
current_rpc_request = RPC_requests[0];
|
current_rpc_request = RPC_requests[0];
|
||||||
current_rpc_request.isActive = true;
|
current_rpc_request.isActive = true;
|
||||||
#ifndef __WXMSW__
|
#ifndef __WXMSW__
|
||||||
m_RPCThread->Resume();
|
m_RPCThread->Resume();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue