mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=10179
This commit is contained in:
parent
27997d52ef
commit
50257f73be
|
@ -4954,3 +4954,10 @@ Rom 22 May 2006
|
||||||
|
|
||||||
lib/
|
lib/
|
||||||
diagnostics_win.C
|
diagnostics_win.C
|
||||||
|
|
||||||
|
David 23 May 2006
|
||||||
|
- core client: fix logic error involving the
|
||||||
|
"5 minutes of network after GUI RPC" thing.
|
||||||
|
|
||||||
|
client/
|
||||||
|
client_state.C
|
||||||
|
|
|
@ -476,8 +476,8 @@ bool CLIENT_STATE::poll_slow_events() {
|
||||||
// if we've had a GUI RPC in last few minutes, relax the normal rules
|
// if we've had a GUI RPC in last few minutes, relax the normal rules
|
||||||
//
|
//
|
||||||
if (gui_rpcs.got_recent_rpc(300)) {
|
if (gui_rpcs.got_recent_rpc(300)) {
|
||||||
network_suspend_reason &= !SUSPEND_REASON_USER_ACTIVE;
|
network_suspend_reason &= ~SUSPEND_REASON_USER_ACTIVE;
|
||||||
network_suspend_reason &= !SUSPEND_REASON_BATTERIES;
|
network_suspend_reason &= ~SUSPEND_REASON_BATTERIES;
|
||||||
}
|
}
|
||||||
if (network_suspend_reason) {
|
if (network_suspend_reason) {
|
||||||
if (!network_suspended) {
|
if (!network_suspended) {
|
||||||
|
|
Loading…
Reference in New Issue