*** empty log message ***

svn path=/trunk/boinc/; revision=3235
This commit is contained in:
David Anderson 2004-04-08 18:34:48 +00:00
parent 28a5f18c50
commit 2377fbc7b4
1 changed files with 4 additions and 4 deletions

View File

@ -284,7 +284,7 @@ int CLIENT_STATE::init() {
set_client_state_dirty("init");
#ifndef _WIN32
gui_rpcs.init("gui_rpc");
//gui_rpcs.init("gui_rpc");
#endif
return 0;
}
@ -368,7 +368,7 @@ bool CLIENT_STATE::do_something() {
POLL_ACTION(garbage_collect , garbage_collect );
POLL_ACTION(update_results , update_results );
#ifndef _WIN32
POLL_ACTION(gui_rpc , gui_rpcs.poll );
//POLL_ACTION(gui_rpc , gui_rpcs.poll );
#endif
} else if (network_suspended) {
scope_messages.printf("CLIENT_STATE::do_something(): network suspended\n");
@ -381,7 +381,7 @@ bool CLIENT_STATE::do_something() {
POLL_ACTION(garbage_collect , garbage_collect );
POLL_ACTION(update_results , update_results );
#ifndef _WIN32
POLL_ACTION(gui_rpc , gui_rpcs.poll );
//POLL_ACTION(gui_rpc , gui_rpcs.poll );
#endif
} else {
net_stats.poll(*net_xfers);
@ -400,7 +400,7 @@ bool CLIENT_STATE::do_something() {
POLL_ACTION(garbage_collect , garbage_collect );
POLL_ACTION(update_results , update_results );
#ifndef _WIN32
POLL_ACTION(gui_rpc , gui_rpcs.poll );
//POLL_ACTION(gui_rpc , gui_rpcs.poll );
#endif
}